HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/zipwire.komma.pro/app/KommaApp/Pages/Models/Blocks/Entity.php
<?php
namespace App\KommaApp\Pages\Models\Blocks;


use Illuminate\Database\Eloquent\Model;
use App\KommaApp\Kms\Core\Eav\EntityInterface;

/**
 * App\KommaApp\Pages\Models\Blocks\Entity
 *
 * @property-read \Illuminate\Database\Eloquent\Collection|\App\KommaApp\Pages\Models\Blocks\Attribute[] $attributes
 * @mixin \Eloquent
 */
class Entity extends model implements EntityInterface
{
    protected $fillable = ['name'];
    protected $table = 'page_block_entities';


    public function attributes() {
        return $this->hasMany(Attribute::class);
    }
}