SeniorPlaceData extends Model
Table of Contents
- $fillable : array<string|int, string>
- The attributes that are mass assignable.
- $hidden : array<string|int, string>
- The attributes excluded from the model's JSON form.
- $table : string
- The table associated with the model.
- user() : HasOne
- Get the user relationship
Properties
$fillable
The attributes that are mass assignable.
protected
array<string|int, string>
$fillable
= ['name', 'link_seniorplace', 'link_pflegehilfe', 'link_24hpflegecheck']
$hidden
The attributes excluded from the model's JSON form.
protected
array<string|int, string>
$hidden
= ['user_id']
$table
The table associated with the model.
protected
string
$table
= 'users_seniorplace_data'
Methods
user()
Get the user relationship
public
user() : HasOne