よく忘れて探すのでメモ。
User.php
class User extends Authenticatable
{
use Notifiable;
protected static function boot()
{
parent::boot();
User::retrieved(function($user) {
if(!$user->profile_image_url){
$user->profile_image_url = asset('/img/default_profile_image.png');
}
});
}
}
上記はDBにないデータが渡ってきて混乱するので、
このやり方するよりは下記のようにModel生成時にデフォルト値を指定する方法をおすすめします。
User.php
class User extends Authenticatable
{
use Notifiable;
protected static function boot()
{
parent::boot();
User::creating(function($user) {
$user->profile_image_url = asset('/img/default_profile_image.png');
});
}
}
あとで見てて気づいたのですが、下記のような方法もあるみたいです。
User.php
class User extends Authenticatable
{
use Notifiable;
protected $attributes = [
'profile_image_url' => asset('/img/default_profile_image.png'),
];
}