X7ROOT File Manager
Current Path:
/home/gfecatvj/sites/restate/platform/plugins/real-estate/src/Models
home
/
gfecatvj
/
sites
/
restate
/
platform
/
plugins
/
real-estate
/
src
/
Models
/
📁
..
📄
Category.php
(594 B)
📄
Consult.php
(1003 B)
📄
Currency.php
(457 B)
📄
Feature.php
(889 B)
📄
Investor.php
(554 B)
📄
Project.php
(3.11 KB)
📄
Property.php
(4.09 KB)
Editing: Investor.php
<?php namespace Botble\RealEstate\Models; use Botble\Base\Traits\EnumCastable; use Botble\Base\Enums\BaseStatusEnum; use Botble\Base\Models\BaseModel; class Investor extends BaseModel { use EnumCastable; /** * The database table used by the model. * * @var string */ protected $table = 're_investors'; /** * @var array */ protected $fillable = [ 'name', 'status', ]; /** * @var array */ protected $casts = [ 'status' => BaseStatusEnum::class, ]; }
Upload File
Create Folder