$fillable
$hidden
$guarded
$appends
$with
$timestamps
$dates
$casts
$primaryKey
$incrementing
$keyType
$table
$connection
$touches
$attributes: $fillable: An array of properties that can be mass-assigned. class User extends Model
{
protected $fillable = [
'name', 'email', 'password',
];
} 2. $hidden: An array of properties that should be hidden when the…