Added few more options in status column in import transit page
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Has been cancelled
Gemini PR Review / Gemini PR Review (pull_request) Has been cancelled
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Has been cancelled
Laravel Larastan / larastan (pull_request) Has been cancelled
Laravel Pint / pint (pull_request) Has been cancelled

This commit is contained in:
dhanabalan
2026-05-08 14:34:04 +05:30
parent 2f36fe7270
commit b70d078ca9

View File

@@ -85,9 +85,12 @@ class ImportTransitResource extends Resource
Forms\Components\Select::make('status') Forms\Components\Select::make('status')
->label('Status') ->label('Status')
->options([ ->options([
'Completed' => 'Completed', 'Under Service Provider Finalization' => 'Under Service Provider Finalization',
'InTransit' => 'InTransit', 'Yet to pick up' => 'Yet to pick up',
'Booked' => 'Booked', 'Awaiting Vessel Loading' => 'Awaiting Vessel Loading',
'In Transit' => 'In Transit',
'Under Import Customs Clearance in Destination' => 'Under Import Customs Clearance in Destination',
'Delivered' => 'Delivered',
]) ])
->reactive() ->reactive()
->afterStateUpdated(function (callable $set) { ->afterStateUpdated(function (callable $set) {