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.
12 lines
286 B
PHP
12 lines
286 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\CurrencyResource\Pages;
|
|
|
|
use App\Filament\Resources\CurrencyResource;
|
|
use Filament\Actions;
|
|
use Filament\Resources\Pages\CreateRecord;
|
|
|
|
class CreateCurrency extends CreateRecord
|
|
{
|
|
protected static string $resource = CurrencyResource::class;
|
|
} |