FleetCart/Modules/User/Entities/RoleTranslation.php

16 lines
280 B
PHP
Raw Normal View History

2023-06-11 12:14:03 +00:00
<?php
namespace Modules\User\Entities;
use Modules\Support\Eloquent\TranslationModel;
class RoleTranslation extends TranslationModel
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = ['name'];
}