toanld/laravel-debug-to-sql

There is no license information available for the latest version (v1.1.9) of this package.

Help you find out which file the query is in in the code.

v1.1.9 2023-11-10 09:57 UTC

This package is auto-updated.

Last update: 2024-04-10 11:10:56 UTC


README

Require this package with composer. It is recommended to only require the package for development.

composer require toanld/laravel-debug-to-sql

Syntax

namespace App;

use Illuminate\Database\Eloquent\Model;
use Toanld\DebugToSql\DebugToSQL;

class Test extends Model
{
    use DebugToSQL;
}