silent-auction/app/Models/VehicleScores.php

33 lines
528 B
PHP
Raw Permalink Normal View History

2019-07-11 20:55:45 -04:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class VehicleScores extends Model
{
protected $table = 'vehicle_scores';
protected $fillable = [
'judge',
'overall_score',
'vehicle',
'created_at',
'updated_at'
];
protected $dates = [
'created_at',
'updated_at'
];
2022-08-11 17:09:03 -04:00
public function judges()
2019-07-11 20:55:45 -04:00
{
2022-08-08 21:21:39 -04:00
return $this->belongsTo('App\Models\Judges', 'judge', 'id');
2019-07-11 20:55:45 -04:00
}
public function scoredVehicle()
{
2022-08-08 21:21:39 -04:00
return $this->hasMany('App\Models\Vehicles', 'id', 'vehicle');
2019-07-11 20:55:45 -04:00
}
}