phpvms/app/Models/Bid.php
Nabeel S f3fe3a56ba
Don't return bids by default, fix user flight column #639 (#640)
Fix the user api response, don't return bids by default, fix flights column #639
2020-03-25 18:04:26 -04:00

40 lines
637 B
PHP

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