silent-auction/app/Models/CarShowWinner.php

31 lines
486 B
PHP
Raw Normal View History

2019-07-11 20:55:45 -04:00
<?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()
{
2022-08-08 14:57:49 -04:00
return $this->hasMany(Vehicles::class, 'vehicle');
2019-07-11 20:55:45 -04:00
}
public function awardCategory()
{
2022-08-08 20:34:48 -04:00
return $this->hasMany(CarShowCategory::class, 'category_name');
2019-07-11 20:55:45 -04:00
}
}