$name * @property bool $active * @property \Illuminate\Support\Carbon $created_at * @property \Illuminate\Support\Carbon $updated_at */ class Province extends Model { use HasTranslations; /** * Table name * * @var string */ protected $table = 'provinces'; /** * Translatable fieldsg * * @var array */ public $translatable = ['name']; /** * The attributes that should be cast. * * @var array */ protected $casts = [ 'active' => 'boolean', ]; }