File "ServiceTime.php"

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

<?php

namespace Modules\Booking\Models;

use App\BaseModel;
use Illuminate\Database\Eloquent\SoftDeletes;

class ServiceTime extends BaseModel
{

    protected $table = 'bravo_service_time';

    protected $fillable = [
        'object_id',
        'object_model',
        'label',
        'time',
        'duration',
        'create_user',
        'update_user',
    ];

    protected $casts = [
        'time' => 'datetime',
    ];
}