File "RatePricing.php"

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

<?php

namespace Modules\Booking\Models;

use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;

class RatePricing extends Model
{


    protected $table = 'bravo_rate_pricing';

    protected $fillable = [
        'pricing_cat_id',
        'rate_id',
        'price',
        'is_tier',
        'tier_min',
        'tier_max',
        'schedule_id',
    ];
}