mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-20 13:04:02 +00:00
14 lines
161 B
PHP
14 lines
161 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
/**
|
|
* Class Booking
|
|
*/
|
|
class BookingTransactions extends AbstractModel
|
|
{
|
|
|
|
protected $table = 'booking_transactions_view';
|
|
|
|
}
|