login as lecturer

This commit is contained in:
Benjamin Takats
2022-12-01 11:23:15 +01:00
parent 9ec6b24a69
commit ba07dca294
20 changed files with 72 additions and 41 deletions

View File

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