How to solve attempt to read property "id" on null (Laravel-8)
I got this error while running php artisan migrate:fresh --seed this command will create table in MySQL database and fill the database details DB_DATABASE in .env file. parent::boot(); static::creating(function($model) { $user = Auth::user(); model->created_by = $user->id ? $user->id : 1…