BeautyForm extends Model Uses HasFactory, SoftDeletes
Table of Contents
- $appends : array<string|int, mixed>
- The accessors to append to the model's array form.
- $casts : array<string|int, mixed>
- The attributes that should be cast.
- $dates : array<string|int, mixed>
- Column for soft deletes
- $fillable : array<string|int, mixed>
- The attributes that are mass assignable.
- $hidden : array<string|int, mixed>
- The attributes excluded from the model's JSON form.
- $table : string
- The table associated with the model.
- $with : array<string|int, mixed>
- The attributes that should be cast.
Properties
$appends
The accessors to append to the model's array form.
protected
array<string|int, mixed>
$appends
= []
$casts
The attributes that should be cast.
protected
array<string|int, mixed>
$casts
= []
$dates
Column for soft deletes
protected
array<string|int, mixed>
$dates
= ["deleted_at"]
$fillable
The attributes that are mass assignable.
protected
array<string|int, mixed>
$fillable
= ['rep_full_name', 'company_name', 'is_owner_or_manager', 'email', 'phone', 'n_employees', 'have_channel', 'which_one', 'is_sponsored', 'steal_clients', 'is_interest', 'signature']
$hidden
The attributes excluded from the model's JSON form.
protected
array<string|int, mixed>
$hidden
= ['updated_at', 'created_at', 'deleted_at']
$table
The table associated with the model.
protected
string
$table
= "beauty_forms"
$with
The attributes that should be cast.
protected
array<string|int, mixed>
$with
= []