%PDF- %PDF-
Direktori : /var/www/html/geotechnics/api/app/Models/ |
Current File : /var/www/html/geotechnics/api/app/Models/Country.php |
<?php namespace App\Models; /** * @property integer id * @property string code * @property string name */ class Country extends BaseModel { public $timestamps = false; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'code', 'name', ]; protected $casts = [ 'id' => 'integer', 'code' => 'string', 'name' => 'string', ]; }