1 | <?php |
||
7 | class Translation extends Model |
||
8 | { |
||
9 | protected $casts = [ |
||
10 | 'content' => 'array', |
||
11 | ]; |
||
12 | protected $fillable = ['content', 'field', 'locale']; |
||
13 | protected $guarded = ['id']; |
||
14 | public $timestamps = false; |
||
15 | |||
16 | /** |
||
17 | * Override default constructor to set table using config file. |
||
18 | * @param array $attributes [fields] |
||
19 | */ |
||
20 | 9 | public function __construct(array $attributes = []) |
|
25 | } |
||
26 |