File "PricingSchedule.php"
Full Path: /home/bettaeza/flyinsyria.com/Booking/Models/PricingSchedule.php
File size: 422 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Modules\Booking\Models;
use App\BaseModel;
class PricingSchedule extends BaseModel
{
protected $table = 'bravo_pricing_schedule';
protected $fillable = [
'start_date',
'end_date',
'months',
'day_of_week',
'priority',
];
protected $casts = [
'start_date' => 'datetime',
'end_date' => 'datetime',
];
}