<?php
namespace App\Filament\Resources\Inventories\RequisitionResource\Tables\Actions\Rfp;
class RfpContainerAction extends BaseRequestAction implements HandleCustomActionInterface
{
public function getIdentifier(): string
{
return 'rfp_container_action';
}
public function getLabel(): Htmlable|string|null
{
return 'Rfp Requests';
}
public function getModalHeading(): string|Htmlable
{
return 'Rfp Requests';
}
public function getColor(): array|string|null
{
return Color::Yellow;
}
public function getIcon(): Htmlable|string|null
{
return 'heroicon-m-clipboard-document-list';
}
public function setUp(): void
{
parent::setUp();
$this->getSetUp();
}
private function getSetUp(): static
{
$this->registerModalActions([
RfpCreateAction::make('create'),
RfpDeleteAction::make('delete'),
// $this->getEditAction(),
// $this->getDeleteAction(),
]);
$this->setModalContent();
return $this;
}
private function setModalContent(): void
{
$this->modalContent(fn(Model $record, Action $action) => view(
'filament.tables.actions.contents.rfp-container-action',
[
'record' => $record,
'action' => $action,
]
));
}
}