Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
trouvaille
/
Booking
/
Models
:
RatePricing.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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', ]; }