mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange.git
synced 2026-08-19 04:14:04 +00:00
26 lines
409 B
PHP
26 lines
409 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class SupplierBookingItem extends Model
|
|
{
|
|
protected $fillable = [
|
|
'id',
|
|
'china_bankslip_url',
|
|
'book_id',
|
|
'bank_in_amount',
|
|
'date',
|
|
'details',
|
|
'supplierbooking_id'
|
|
];
|
|
|
|
public function bookingsupplier()
|
|
{
|
|
return $this->belongsTo('App\BookingSupplier');
|
|
}
|
|
|
|
|
|
}
|