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);
}
}