2022-08-06 15:39:24 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Filament\Resources;
|
|
|
|
|
|
|
|
use App\Filament\Resources\VehiclesResource\Pages;
|
|
|
|
use App\Filament\Resources\VehiclesResource\RelationManagers;
|
|
|
|
use App\Models\Vehicles;
|
|
|
|
use Filament\Forms;
|
|
|
|
use Filament\Resources\Form;
|
|
|
|
use Filament\Resources\Resource;
|
|
|
|
use Filament\Resources\Table;
|
|
|
|
use Filament\Tables;
|
|
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
|
|
use Illuminate\Database\Eloquent\SoftDeletingScope;
|
2022-08-07 12:48:05 -04:00
|
|
|
use Filament\Tables\Columns\BooleanColumn;
|
|
|
|
use Filament\Tables\Columns\TextColumn;
|
|
|
|
use Filament\Forms\Components\TextInput;
|
|
|
|
use Filament\Forms\Components\Toggle;
|
2022-08-06 15:39:24 -04:00
|
|
|
|
|
|
|
class VehiclesResource extends Resource
|
|
|
|
{
|
|
|
|
protected static ?string $model = Vehicles::class;
|
|
|
|
|
|
|
|
protected static ?string $navigationIcon = 'heroicon-o-collection';
|
|
|
|
|
2022-08-07 13:07:31 -04:00
|
|
|
protected static ?string $navigationGroup = 'Car Show';
|
|
|
|
|
2022-08-06 15:39:24 -04:00
|
|
|
public static function form(Form $form): Form
|
|
|
|
{
|
|
|
|
return $form
|
|
|
|
->schema([
|
|
|
|
//
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function table(Table $table): Table
|
|
|
|
{
|
|
|
|
return $table
|
|
|
|
->columns([
|
2022-08-16 18:10:25 -04:00
|
|
|
TextColumn::make('vehicleOwner.bidder_assigned_num')
|
2022-08-14 11:32:00 -04:00
|
|
|
->label('Number')
|
|
|
|
->sortable(),
|
|
|
|
TextColumn::make('year')
|
|
|
|
->label('Year')
|
|
|
|
->sortable(),
|
|
|
|
TextColumn::make('make')
|
|
|
|
->label('Make')
|
|
|
|
->sortable(),
|
|
|
|
TextColumn::make('model')
|
|
|
|
->label('Model')
|
|
|
|
->sortable(),
|
|
|
|
TextColumn::make('vehicleType.category_name')
|
|
|
|
->label('Type')
|
|
|
|
->sortable(),
|
|
|
|
BooleanColumn::make('doNotJudge')
|
|
|
|
->label('Judged?')
|
|
|
|
->sortable()
|
|
|
|
->falseIcon('heroicon-o-badge-check')
|
|
|
|
->trueIcon('heroicon-o-x-circle')
|
|
|
|
->trueColor('danger')
|
|
|
|
->falseColor('success'),
|
|
|
|
TextColumn::make('vehicleOwner.bidder_fname')
|
|
|
|
->label('First Name')
|
|
|
|
->sortable(),
|
|
|
|
TextColumn::make('vehicleOwner.bidder_lname')
|
|
|
|
->label('Last Name')
|
|
|
|
->sortable(),
|
2022-08-06 15:39:24 -04:00
|
|
|
])
|
|
|
|
->filters([
|
|
|
|
//
|
|
|
|
])
|
|
|
|
->actions([
|
|
|
|
Tables\Actions\EditAction::make(),
|
|
|
|
])
|
|
|
|
->bulkActions([
|
|
|
|
Tables\Actions\DeleteBulkAction::make(),
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function getRelations(): array
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
//
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function getPages(): array
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'index' => Pages\ListVehicles::route('/'),
|
|
|
|
'create' => Pages\CreateVehicles::route('/create'),
|
|
|
|
'edit' => Pages\EditVehicles::route('/{record}/edit'),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|