php artisan make -mcr code example
Example 1: php artisan make :migration with model
php artisan make:model ModelName -a
Example 2: by default null eloquent user data in relationship in laravel 8
# simple handle in blade file
{{ $post->author->name or 'No author' }}
# Model action
public function author()
{
return $this->belongsTo('App\Author')->withDefault();
}
public function author()
{
return $this->belongsTo('App\Author')->withDefault([
'name' => 'Guest Author',
]);
}