ReviewPortalsUrls 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
= ['user_id', 'link', 'directory_id', 'location']
$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
= 'directories_users'
Methods
user()
Get the user relationship
public
user() : HasOne