canOrAbort('create article'); $result = $this->form->store(); StorePushNotification::dispatch( PushNotification::all(), [ 'title' => 'Artikel', 'body' => $result->title, ], ); $this->dispatch('refreshDatatable'); $this->toast('Artikel berhasil ditambahkan.'); $this->redirectRoute('studio.manage.article.index', navigate: true); } public function render() { return view('livewire.studio.manage.article.form', [ 'pageTitle' => 'Tambah Artikel', ]); } }