'required' ]; protected $messages = [ 'name.required' => 'Il nome รจ obbligatorio' ]; public function resetFields(){ $this->name = ''; } public function updatingSearch() { $this->resetPage(); } public function render() { $rows = \App\Models\MarcaVeicolo::where('name', 'like', '%'.$this->search.'%')->orderBy('name')->paginate(10); return view('livewire.marca-veicolo', ['records' => $rows]); } public function add() { $this->resetFields(); $this->add = true; $this->update = false; } public function store() { $this->validate(); try { \App\Models\MarcaVeicolo::create([ 'name' => $this->name ]); 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\MarcaVeicolo::findOrFail($id); if( !$record) { session()->flash('error','Record non trovato'); } else { $this->name = $record->name; $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\MarcaVeicolo::whereId($this->dataId)->update([ 'name' => $this->name ]); 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\MarcaVeicolo::find($id)->delete(); session()->flash('success',"Record eliminato"); }catch(\Exception $e){ session()->flash('error',"Errore"); } } }