improve ui
This commit is contained in:
@@ -6,21 +6,40 @@ use App\Filament\Resources\PaymentOrder\PaymentOrderResource;
|
||||
use App\Filament\Resources\PaymentOrder\PaymentOrderResource\Actions\ExportToWord;
|
||||
use Filament\Actions;
|
||||
use Filament\Actions\Action;
|
||||
use Filament\Pages\Actions\DeleteAction;
|
||||
use Filament\Resources\Pages\EditRecord;
|
||||
|
||||
class EditPaymentOrder extends EditRecord
|
||||
{
|
||||
protected static string $resource = PaymentOrderResource::class;
|
||||
|
||||
protected function getHeaderActions(): array
|
||||
protected function getActions(): array
|
||||
{
|
||||
return [
|
||||
Actions\DeleteAction::make()
|
||||
->icon('heroicon-m-trash'),
|
||||
Action::make('Go back')
|
||||
->url($this->getResource()::getUrl('index'))
|
||||
->icon('heroicon-m-arrow-uturn-left')
|
||||
->button()
|
||||
->outlined()
|
||||
->color('primary'),
|
||||
|
||||
Action::make('Save')
|
||||
->action('save')
|
||||
->keyBindings(['mod+s'])
|
||||
->icon('heroicon-m-cloud-arrow-up'),
|
||||
|
||||
Action::make('ExportToWord')
|
||||
->icon('heroicon-m-document-arrow-down')
|
||||
->color('gray')
|
||||
->action(fn () => ExportToWord::make($this->getRecord())->handle()->download()),
|
||||
|
||||
DeleteAction::make()
|
||||
->icon('heroicon-m-trash'),
|
||||
];
|
||||
}
|
||||
|
||||
protected function getFormActions(): array
|
||||
{
|
||||
return []; // necessary to remove the bottom actions
|
||||
}
|
||||
}
|
||||
|
||||
@@ -136,8 +136,6 @@ function getLatestNumber(string $tableName = 'incoming_letters', string $column
|
||||
|
||||
/**
|
||||
* Written format of money in turkmen
|
||||
*
|
||||
* @param string $money
|
||||
*/
|
||||
function moneyFormatInTurkmenLetter(string $money): string
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user