schema([ Forms\Components\Select::make('plant_id') ->relationship('plant', 'name') ->required() // ->nullable(), ->reactive() ->default(function () { return optional(Locator::latest()->first())->plant_id; }) ->disabled(fn (Get $get) => !empty($get('id'))) // ->afterStateUpdated(fn ($set) => $set('block_id', null) & $set('name', null) & $set('start_time', null) & $set('duration', null) & $set('end_time', null)) ->afterStateUpdated(function ($state, callable $set, callable $get) { $plantId = $get('plant_id'); // Ensure `linestop_id` is not cleared if (!$plantId) { $set('locPlantError', 'Please select a plant first.'); $set('locator_number', null); $set('locator_quantity', 0); $set('operator_id', Filament::auth()->user()?->name); return; } else { $set('locPlantError', null); $set('locator_number', null); $set('locator_quantity', 0); $set('operator_id', Filament::auth()->user()?->name); } }) ->extraAttributes(fn ($get) => [ 'class' => $get('locPlantError') ? 'border-red-500' : '', ]) ->hint(fn ($get) => $get('locPlantError') ? $get('locPlantError') : null) ->hintColor('danger'), Forms\Components\TextInput::make('locator_number') ->label('Locator Number') ->minLength(7) ->reactive() ->required() ->afterStateUpdated(function ($state, callable $set, callable $get) { $plantId = $get('plant_id'); $locator = $get('locator_number'); if (!$plantId) { $set('locNameError', 'Please select a plant first.'); $set('locator_number', null); $set('locator_quantity', 0); $set('operator_id', Filament::auth()->user()?->name); return; } else if (!$locator || Str::length($locator) < 7) { $set('locNameError', 'Please scan the valid locator number.'); $set('locator_quantity', 0); $set('operator_id', Filament::auth()->user()?->name); return; } else { $set('locNameError', null); $set('locator_quantity', PalletValidation::where('locator_number', $locator)->where('plant_id', $plantId)->distinct('pallet_number')->count('pallet_number')); $set('operator_id', Filament::auth()->user()?->name); } }) ->extraAttributes(fn ($get) => [ 'class' => $get('locNameError') ? 'border-red-500' : '', ]) ->hint(fn ($get) => $get('locNameError') ? $get('locNameError') : null) ->hintColor('danger') ->rule(function (callable $get) { return Rule::unique('locators', 'locator_number') ->where('plant_id', $get('plant_id')) ->ignore($get('id')); // Ignore current record during updates }), Forms\Components\TextInput::make('locator_quantity') ->label('Locator Quantity') ->required() ->readOnly() ->numeric() ->default(0), Forms\Components\Hidden::make('operator_id') ->default(Filament::auth()->user()?->name) ->required(), Forms\Components\TextInput::make('id') ->hidden() ->readOnly(), ]); } public static function table(Table $table): Table { return $table ->columns([ // Tables\Columns\TextColumn::make('id') // ->label('ID') // ->numeric() // ->sortable(), Tables\Columns\TextColumn::make('No.') ->label('No.') ->getStateUsing(function ($record, $livewire, $column, $rowLoop) { $paginator = $livewire->getTableRecords(); $perPage = method_exists($paginator, 'perPage') ? $paginator->perPage() : 10; $currentPage = method_exists($paginator, 'currentPage') ? $paginator->currentPage() : 1; return ($currentPage - 1) * $perPage + $rowLoop->iteration; }), Tables\Columns\TextColumn::make('plant.name') ->numeric() ->searchable() ->sortable(), Tables\Columns\TextColumn::make('locator_number') ->label('Locator Number') ->searchable() ->sortable(), Tables\Columns\TextColumn::make('locator_quantity') ->label('Locator Quantity') ->sortable(), Tables\Columns\TextColumn::make('operator_id') ->label('Operator ID') ->searchable() ->sortable(), Tables\Columns\TextColumn::make('created_at') ->dateTime() ->sortable(), Tables\Columns\TextColumn::make('updated_at') ->dateTime() ->sortable(), Tables\Columns\TextColumn::make('deleted_at') ->dateTime() ->sortable() ->toggleable(isToggledHiddenByDefault: true), ]) ->filters([ Tables\Filters\TrashedFilter::make(), ]) ->actions([ Tables\Actions\ViewAction::make(), Tables\Actions\EditAction::make(), ]) ->bulkActions([ Tables\Actions\BulkActionGroup::make([ Tables\Actions\DeleteBulkAction::make(), Tables\Actions\ForceDeleteBulkAction::make(), Tables\Actions\RestoreBulkAction::make(), ]), ]) ->headerActions([ ImportAction::make() ->importer(LocatorImporter::class) ->visible(function() { return Filament::auth()->user()->can('view import locator'); }), ExportAction::make() ->exporter(LocatorExporter::class) ->visible(function() { return Filament::auth()->user()->can('view export locator'); }), ]); } public static function getRelations(): array { return [ // ]; } public static function getPages(): array { return [ 'index' => Pages\ListLocators::route('/'), 'create' => Pages\CreateLocator::route('/create'), 'view' => Pages\ViewLocator::route('/{record}'), 'edit' => Pages\EditLocator::route('/{record}/edit'), ]; } public static function getEloquentQuery(): Builder { return parent::getEloquentQuery() ->withoutGlobalScopes([ SoftDeletingScope::class, ]); } }