CustomerStore extends Model Uses HasFactory, HasTimestamps
Table of Contents
- $casts : array<string|int, mixed>
- The attributes that should be cast.
- $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 : mixed
Properties
$casts
The attributes that should be cast.
protected
array<string|int, mixed>
$casts
= ['is_blocked' => 'boolean', 'comment' => 'string']
$fillable
The attributes that are mass assignable.
protected
array<string|int, mixed>
$fillable
= ['is_blocked', 'comment']
$hidden
The attributes excluded from the model's JSON form.
protected
array<string|int, mixed>
$hidden
= []
$table
protected
mixed
$table
= "customers_stores"