mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange.git
synced 2026-08-19 04:14:04 +00:00
addd89ceb8
added update chinabankslip feature
16 lines
288 B
PHP
16 lines
288 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ChinaBankSlip extends Model
|
|
{
|
|
protected $fillable = ['actual_transfer_amount','date','details','china_bank_slip_path'];
|
|
|
|
public function booking()
|
|
{
|
|
return $this->belongsTo(Booking::class);
|
|
}
|
|
}
|