canOrAbort('create article'); $result = $this->form->store(); StorePushNotification::dispatch( PushNotification::all(), [ 'title' => '📝 Artikel Baru!', 'body' => Str::limit($result, 50).' '.' ✨ Yuk baca selengkapnya di aplikasi!', ], ); $this->dispatch('refreshDatatable'); $this->toast('Artikel berhasil ditambahkan.'); $this->redirectRoute('studio.manage.article.index'); } public function render(): View { return view('livewire.studio.manage.article.form', [ 'pageTitle' => 'Tambah Artikel', ]); } }