'required' ]; protected $messages = [ 'name.required' => 'Il nome รจ obbligatorio' ]; public function resetFields(){ $this->name = ''; $this->para_agg = ''; } public function updatingSearch() { $this->resetPage(); } public function render() { $rows = \App\Models\CondizioniAtmosferiche::where('name', 'like', '%'.$this->search.'%')->orderBy('name')->paginate(10); return view('livewire.condizioni-atmosferiche', ['records' => $rows]); } public function add() { $this->resetFields(); $this->add = true; $this->update = false; } public function store() { $this->validate(); try { \App\Models\CondizioniAtmosferiche::create([ 'name' => $this->name, 'para_agg' => $this->para_agg, ]); session()->flash('success','Record creato'); $this->resetFields(); $this->add = false; } catch (\Exception $ex) { session()->flash('error','Errore in fase di salvataggio'); } } public function edit($id){ try { $record = \App\Models\CondizioniAtmosferiche::findOrFail($id); if( !$record) { session()->flash('error','Record non trovato'); } else { $this->name = $record->name; $this->para_agg = $record->PARA_AGG; $this->dataId = $record->id; $this->update = true; $this->add = false; } } catch (\Exception $ex) { session()->flash('error','Errore'); } } public function update() { $this->validate(); try { \App\Models\CondizioniAtmosferiche::whereId($this->dataId)->update([ 'name' => $this->name, 'para_agg' => $this->para_agg, ]); session()->flash('success','Record aggiornato'); $this->resetFields(); $this->update = false; } catch (\Exception $ex) { session()->flash('success','Errore'); } } public function cancel() { $this->add = false; $this->update = false; $this->resetFields(); } public function delete($id) { try{ \App\Models\CondizioniAtmosferiche::find($id)->delete(); session()->flash('success',"Record eliminato"); }catch(\Exception $e){ session()->flash('error',"Errore"); } } }