File "ServiceTranslation.php"
Full Path: /home/bettaeza/flyinsyria.com/Booking/Models/ServiceTranslation.php
File size: 363 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Modules\Booking\Models;
use Illuminate\Database\Eloquent\SoftDeletes;
class ServiceTranslation extends Service
{
use SoftDeletes;
protected $table = 'bravo_service_translations';
protected $fillable = [
'title',
'address',
'content',
'locale',
];
protected $slugField = false;
}