File "BravoPricingCat.php"
Full Path: /home/bettaeza/flyinsyria.com/Booking/Models/BravoPricingCat.php
File size: 413 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Modules\Booking\Models;
use App\BaseModel;
use Illuminate\Database\Eloquent\SoftDeletes;
class BravoPricingCat extends BaseModel
{
use SoftDeletes;
protected $table = 'bravo_pricing_cat';
protected $fillable = [
'name',
'type',
'age_enabled',
'min_age',
'max_age',
'vendor_id',
'is_default',
];
}