// SYSTEM PANEL //
[ROOT]
/
mnt
/
pleskStorage
/
vhosts
/
kodsolutions.net
/
subdomains
/
syaaraa.kodsolutions.net
/
app
/
Models
/
Property
[ PARENT ]
EDIT :: Office.php
<?php namespace App\Models\Property; use App\Helpers\Constants; use App\Models\Model; use Spatie\Translatable\HasTranslations; use Illuminate\Database\Eloquent\Factories\HasFactory; class Office extends Model { use HasFactory; use HasTranslations; public $translatable = ['title', 'address']; protected $fillable = [ 'title', 'slug', 'position', 'active', 'image', 'address', 'latitude', 'longitude', 'map_link', 'phone' ]; }
SAVE
CANCEL