phpvms/app/Models/Bid.php
Nabeel S 35359b8646
Create endpoint to load bid by ID (#1248)
* Create endpoint to load bid by ID

* Fix endpoint
2021-06-17 19:42:56 -04:00

40 lines
637 B
PHP

<?php
namespace App\Models;
use App\Contracts\Model;
use Carbon\Carbon;
/**
* @property int user_id
* @property string flight_id
* @property Carbon created_at
* @property Carbon updated_at
*/
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');
}
}