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

16 lines
282 B
PHP

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