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

16 lines
288 B
PHP

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