schema([ Forms\Components\TextInput::make('name') ->label('Name') ->required() ->maxLength(255), Select::make('project_id') ->relationship(name: 'project', titleAttribute: 'name') ->searchable(['name']) ->required(), Select::make('organization_id') ->relationship(name: 'organization', titleAttribute: 'name') ->searchable(['name']) ->required(), ]); } public static function table(Table $table): Table { return $table ->columns([ Tables\Columns\TextColumn::make('name') ->searchable() ->sortable(), Tables\Columns\TextColumn::make('project.name') ->sortable(), Tables\Columns\TextColumn::make('organization.name') ->sortable(), Tables\Columns\TextColumn::make('created_at') ->sortable(), Tables\Columns\TextColumn::make('updated_at') ->sortable(), ]) ->filters([ SelectFilter::make('organization') ->label('Organization') ->relationship('organization', 'name') ->searchable(), SelectFilter::make('organization_id') ->label('Organization ID') ->relationship('organization', 'id') ->searchable(), ]) ->defaultSort('created_at', 'desc') ->actions([ Tables\Actions\EditAction::make(), ]) ->bulkActions([ Tables\Actions\BulkActionGroup::make([ Tables\Actions\DeleteBulkAction::make(), ]), ]); } public static function getRelations(): array { return [ // ]; } public static function getPages(): array { return [ 'index' => Pages\ListTasks::route('/'), 'create' => Pages\CreateTask::route('/create'), 'edit' => Pages\EditTask::route('/{record}/edit'), ]; } }