mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 04:23:55 +00:00
c3f153fe4b
Update Booking Logic Class Delete Booking Logic Class
28 lines
606 B
PHP
28 lines
606 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
/**
|
|
* Class Booking
|
|
* @package App\Models
|
|
* @version August 4, 2020, 4:36 am
|
|
*
|
|
* @property \App\Models\Company company_id
|
|
* @property \App\Models\CompanyBank transferable_bank_id
|
|
* @property string marking
|
|
* @property string reference
|
|
* @property float fix_amount
|
|
* @property \App\Models\Currency convertible_currency_id
|
|
* @property \App\Models\Currency conversion_currency_id
|
|
*/
|
|
class Booking extends AbstractModel
|
|
{
|
|
use SoftDeletes;
|
|
|
|
protected $table = 'bookings';
|
|
|
|
protected $dates = ['deleted_at'];
|
|
}
|