PATH:
home
/
lab2454c
/
costbloc.com
/
Modules
/
CMS
/
Entities
<?php namespace Modules\CMS\Entities; use App\Models\Model; use App\Traits\ModelTraits\Cachable; use Illuminate\Database\Eloquent\Factories\HasFactory; class LayoutType extends Model { use HasFactory, Cachable; protected $fillable = []; protected static function newFactory() { return \Modules\CMS\Database\factories\LayoutTypeFactory::new(); } public function layouts() { return $this->hasMany(Layout::class); } }
[+]
..
[-] Component.php
[edit]
[-] Layout.php
[edit]
[-] Page.php
[edit]
[-] ComponentProperty.php
[edit]
[-] LayoutType.php
[edit]