FleetCart/app/Scaffold/Module/stubs/entities/translation-entity.stub

16 lines
292 B
Plaintext
Raw Normal View History

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