79 lines
2.6 KiB
PHP
79 lines
2.6 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\BiddersResource\RelationManagers;
|
|
|
|
use Filament\Forms;
|
|
use Filament\Resources\Form;
|
|
use Filament\Resources\RelationManagers\RelationManager;
|
|
use Filament\Resources\Table;
|
|
use Filament\Tables;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Illuminate\Database\Eloquent\SoftDeletingScope;
|
|
use App\Models\CarShowCategory;
|
|
|
|
class VehiclesRelationManager extends RelationManager
|
|
{
|
|
protected static string $relationship = 'vehicles';
|
|
|
|
protected static ?string $recordTitleAttribute = 'owner';
|
|
|
|
public static function form(Form $form): Form
|
|
{
|
|
return $form
|
|
->schema([
|
|
Forms\Components\TextInput::make('year')
|
|
->label('Year'),
|
|
Forms\Components\TextInput::make('make')
|
|
->label('Make'),
|
|
Forms\Components\TextInput::make('model')
|
|
->label('Model'),
|
|
Forms\Components\Select::make('type')
|
|
->label('Type')
|
|
->options(CarShowCategory::vehtype()->pluck('category_name', 'id'))
|
|
->searchable(),
|
|
]);
|
|
}
|
|
|
|
public static function table(Table $table): Table
|
|
{
|
|
return $table
|
|
->columns([
|
|
Tables\Columns\TextColumn::make('vehicleOwner.bidder_assigned_number')
|
|
->label('Number')
|
|
->sortable(),
|
|
Tables\Columns\TextColumn::make('year')
|
|
->label('Year')
|
|
->sortable(),
|
|
Tables\Columns\TextColumn::make('make')
|
|
->label('Make')
|
|
->sortable(),
|
|
Tables\Columns\TextColumn::make('model')
|
|
->label('Model')
|
|
->sortable(),
|
|
Tables\Columns\TextColumn::make('vehicleType.category_name')
|
|
->label('Type')
|
|
->sortable(),
|
|
Tables\Columns\BooleanColumn::make('doNotJudge')
|
|
->label('Judged?')
|
|
->sortable()
|
|
->falseIcon('heroicon-o-badge-check')
|
|
->trueIcon('heroicon-o-x-circle')
|
|
->trueColor('danger')
|
|
->falseColor('success'),
|
|
])
|
|
->filters([
|
|
//
|
|
])
|
|
->headerActions([
|
|
Tables\Actions\CreateAction::make(),
|
|
])
|
|
->actions([
|
|
Tables\Actions\EditAction::make(),
|
|
Tables\Actions\DeleteAction::make(),
|
|
])
|
|
->bulkActions([
|
|
Tables\Actions\DeleteBulkAction::make(),
|
|
]);
|
|
}
|
|
}
|