adrema/app/Region.php

17 lines
245 B
PHP
Raw Normal View History

2020-04-12 00:26:44 +02:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Region extends Model
{
public $timestamps = false;
public $fillable = ['name', 'nami_id', 'is_null'];
public $casts = [
2022-03-11 20:19:17 +01:00
'is_null' => 'boolean',
2020-04-12 00:26:44 +02:00
];
}