mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange.git
synced 2026-08-19 04:14:04 +00:00
18 lines
327 B
PHP
18 lines
327 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class UserBankSlip extends Model
|
|
{
|
|
protected $fillable = ['bank_slip_type','bankslip_url','transfer_amount','book_id','cust_marking'];
|
|
|
|
// belongs to booking
|
|
public function uploadbankslip(){
|
|
return $this->belongsTo('app\Booking');
|
|
}
|
|
|
|
|
|
}
|