haruncpi/laravel-query-log

Log your all laravel sql query

v1.0.1 2022-09-22 04:22 UTC

This package is auto-updated.

Last update: 2024-03-21 05:41:18 UTC


README

68747470733a2f2f62616467656e2e6e65742f7061636b61676973742f762f686172756e6370692f6c61726176656c2d71756572792d6c6f67 68747470733a2f2f62616467656e2e6e65742f62616467652f6c6963656e63652f434320425920342e302f323342434342 68747470733a2f2f62616467656e2e6e65742f7061636b61676973742f64742f686172756e6370692f6c61726176656c2d71756572792d6c6f67 68747470733a2f2f62616467656e2e6e65742f62616467652f747769747465722f406c61726176656c61727469636c652f3144413146323f69636f6e266c6162656c 68747470733a2f2f62616467656e2e6e65742f62616467652f66616365626f6f6b2f6c61726176656c61727469636c652f336235393938

Log executed Laravel SQL queries and their line number and more!

Support

Buy Me A Coffee

Documentation

Get documentation on laravelarticle.com

Sample Preview

text format

url         : http://example.test
method      : GET
total_query : 3
total_time  : 5.69
--------------------

sl          : 1
query       : select * from `students` where `id` = ? and `name` = ?
bindings    : 6|Tomas
final_query : select * from `students` where `id` = 6 and `name` = 'Tomas'
time        : 4.38
file        : C:\www\example\app\Http\Controllers\SiteController.php:10
line        : 10

sl          : 2
query       : select * from `students` where `id` = ? and `phone` = ?
bindings    : 6|649-768-7305
final_query : select * from `students` where `id` = 6 and `phone` = '649-768-7305'
time        : 0.75
file        : C:\www\example\app\Http\Controllers\SiteController.php:11
line        : 11

sl          : 3
query       : select * from `students` where `id` = ?
bindings    : 6
final_query : select * from `students` where `id` = 6
time        : 0.56
file        : C:\www\example\app\Http\Controllers\SiteController.php:12
line        : 12

Other Packages