getResource()::getUrl('index'); } protected function getHeaderActions(): array { return [ Action::make('back') ->label('Kembali') ->url(fn (): string => route('filament.dashboard.resources.publication.news.index')) ->outlined() ->color('secondary'), ]; } protected function handleRecordCreation(array $data): Model { $data['author_id'] = auth()->id(); return static::getModel()::create($data); } }