components([]); } public function table(Table $table): Table { return SaleResource::table($table)->headerActions([ Action::make('New Sale')->action('openCreateForm'), ]); } public function openCreateForm() { return redirect()->route('filament.admin.resources.sales.create', ['client_id' => $this->getOwnerRecord()->id]); } }