FleetCart/Modules/Page/Entities/PageTranslation.php
2023-06-11 13:14:03 +01:00

16 lines
288 B
PHP

<?php
namespace Modules\Page\Entities;
use Modules\Support\Eloquent\TranslationModel;
class PageTranslation extends TranslationModel
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = ['name', 'body'];
}