resetValidation(); $this->resetErrorBag(); $this->method = $method; $this->modalTitle = $modalTitle; if ($id) { $this->form->setBrand(BrandModel::findOrFail($id)); } } public function create() { $this->form->store(); $this->dispatch('refreshDatatable'); Flux::toast( heading: 'Berhasil', text: 'Merek berhasil ditambahkan.', variant: 'success', duration: 3000 ); Flux::modals()->close(); } public function update() { $this->form->update(); $this->dispatch('refreshDatatable'); Flux::toast( heading: 'Berhasil', text: 'Merek berhasil diperbarui.', variant: 'success', duration: 3000 ); Flux::modals()->close(); } public function delete(BrandModel $brand) { $this->form->brand = $brand; $this->form->delete(); $this->dispatch('refreshDatatable'); Flux::toast( heading: 'Berhasil', text: 'Merek berhasil dihapus.', variant: 'success', ); Flux::modals()->close(); } #[On('fn:sortOrder')] public function sortOrder(BrandModel $brand, string $direction) { $this->form->brand = $brand; $this->form->sortOrder($direction); $this->dispatch('refreshDatatable'); } public function render() { return view('livewire.studio.catalog.brands', [ 'pageTitle' => 'Merek', ]); } }