mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange.git
synced 2026-08-19 04:14:04 +00:00
c303fb0c5f
changed bankslip_url to file for upload user bankslip
16 lines
297 B
PHP
16 lines
297 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'];
|
|
|
|
public function booking()
|
|
{
|
|
return $this->belongsTo(Booking::class);
|
|
}
|
|
}
|