Log queries run in storage/log.php file

PHOTO EMBED

Sun Oct 09 2022 08:01:38 GMT+0000 (Coordinated Universal Time)

Saved by @eneki #php

Route:: get ('/', function () {
     \Illuminate\Support\Facades \DB::listen (function ($query) {
         logger($query->sql, $query->bindings); // Helper fn for \Log::info();
     });
     return view ('posts', [
          'posts' => Post::all()
     ]);
 });
content_copyCOPY