31 lines
505 B
PHP
31 lines
505 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'
|
|
];
|
|
|
|
protected $dates = [
|
|
'created_at',
|
|
'updated_at'
|
|
];
|
|
|
|
public function awardVehicle()
|
|
{
|
|
return $this->hasMany('App\Models\Vehicles', 'id', 'vehicle');
|
|
}
|
|
|
|
public function awardCategory()
|
|
{
|
|
return $this->hasMany('App\Models\CarShowCategory', 'id', 'category');
|
|
}
|
|
}
|