If you want to log all the database queries during development add this snippet to your AppServiceProvider
public function boot(){    if (App::environment('local')) {        DB::listen(function ($query) {            logger(Str::replaceArray('?', $query->bindings, $query->sql));        });    }}
Tip given by @mmartin_joo