File "PricingCatRelation.php"

Full Path: /home/bettaeza/flyinsyria.com/Booking/Models/PricingCatRelation.php
File size: 306 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Modules\Booking\Models;

use App\BaseModel;

class PricingCatRelation extends BaseModel
{
    protected $table = 'bravo_pricing_cat_relation';
    protected $fillable = [
        'object_id',
        'object_model',
        'pricing_cat_id',
        'is_default',
    ];
}