mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange.git
synced 2026-08-19 04:14:04 +00:00
18 lines
331 B
PHP
18 lines
331 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class BookingSupplier extends Model
|
|
{
|
|
// protected $guarded = [];
|
|
protected $fillable = ['rate','rebate','payment_amount','payment_method'];
|
|
public $timestamps = true;
|
|
|
|
public function user()
|
|
{
|
|
return $this->belongsTo('app\User');
|
|
}
|
|
}
|