35 lines
607 B
PHP
35 lines
607 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class CarShowWinner extends Model
|
|
{
|
|
protected $table = 'car_show_winners';
|
|
protected $fillable = [
|
|
'vehicle',
|
|
'category',
|
|
'place',
|
|
'total_score'
|
|
];
|
|
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'created_at' => 'datetime',
|
|
'updated_at' => 'datetime',
|
|
];
|
|
}
|
|
|
|
public function awardVehicle()
|
|
{
|
|
return $this->hasMany('App\Models\Vehicles', 'id', 'vehicle');
|
|
}
|
|
|
|
public function awardCategory()
|
|
{
|
|
return $this->hasMany('App\Models\CarShowCategory', 'id', 'category');
|
|
}
|
|
}
|