phpvms/app/Models/Bid.php

33 lines
490 B
PHP

<?php
namespace App\Models;
use App\Contracts\Model;
class Bid extends Model
{
public $table = 'bids';
protected $fillable = [
'user_id',
'flight_id',
];
protected $casts = [
'user_id' => 'integer',
];
/**
* Relationships
*/
public function flight()
{
return $this->belongsTo(Flight::class, 'flight_id');
}
public function user()
{
return $this->belongsTo(User::class, 'user_id');
}
}