Introduce a new currency management module including a dedicated resource, database migration, and a custom Filament page for importing exchange rates. Additionally, enhance the ShipmentResource table with improved column visibility, sorting, and route display, and integrate shipment update notifications.
19 lines
412 B
PHP
19 lines
412 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\CurrencyResource\Pages;
|
|
|
|
use App\Filament\Resources\CurrencyResource;
|
|
use Filament\Actions;
|
|
use Filament\Resources\Pages\EditRecord;
|
|
|
|
class EditCurrency extends EditRecord
|
|
{
|
|
protected static string $resource = CurrencyResource::class;
|
|
|
|
protected function getHeaderActions(): array
|
|
{
|
|
return [
|
|
Actions\DeleteAction::make(),
|
|
];
|
|
}
|
|
} |