芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/public_html/app/Models/User.php
*/ protected $fillable = [ 'name', 'email', 'password', 'profile_photo_path', 'type', ]; /** * The attributes that should be hidden for serialization. * * @var array
*/ protected $hidden = [ 'password', 'remember_token', 'two_factor_recovery_codes', 'two_factor_secret', ]; /** * The attributes that should be cast. * * @var array
*/ protected $casts = [ 'email_verified_at' => 'datetime', ]; /** * The accessors to append to the model's array form. * * @var array
*/ protected $appends = [ 'profile_photo_url', ]; }