2019-02-13 16:36:47 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
2022-08-07 13:37:33 -04:00
|
|
|
class Vehicles extends Model
|
2019-02-13 16:36:47 -05:00
|
|
|
{
|
2022-08-07 13:34:06 -04:00
|
|
|
protected $table = 'vehicles';
|
|
|
|
|
|
|
|
protected $fillable = [
|
|
|
|
'year',
|
|
|
|
'make',
|
|
|
|
'model',
|
|
|
|
'type',
|
|
|
|
'doNotJudge',
|
|
|
|
'owner'
|
|
|
|
];
|
|
|
|
|
|
|
|
protected $dates = [
|
|
|
|
'created_at',
|
|
|
|
'updated_at'
|
|
|
|
];
|
|
|
|
|
|
|
|
public function vehicleType()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('App\Models\CarShowCategory', 'type', 'id');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function vehicleOwner()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('App\Models\Bidders', 'owner', 'bidder_assigned_number');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function vehicleScores()
|
|
|
|
{
|
|
|
|
return $this->hasMany('App\Models\VechicleScores', 'id', 'vehicle');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function CarShowWinner()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('App\Models\CarShowWinner', 'id', 'vehicle');
|
|
|
|
}
|
2019-02-13 16:36:47 -05:00
|
|
|
}
|