some new tables

This commit is contained in:
Benjamin Takats
2022-12-01 00:52:07 +01:00
parent 1880027bbb
commit c72d68ab46
10 changed files with 135 additions and 18 deletions

View File

@@ -11,7 +11,6 @@ class Venue extends Model
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
@@ -23,11 +22,10 @@ class Venue extends Model
/**
* The attributes that should be cast to native types.
*
* @var array
*/
protected $casts = [
'id' => 'integer',
'id' => 'integer',
'city_id' => 'integer',
];