tpetry/laravel-mysql-explain

Get Visual MySQL EXPLAIN for Laravel.
206,315 267
Install
composer require tpetry/laravel-mysql-explain
Latest Version:2.2.0
PHP:^8.0
License:MIT
Last Updated:Mar 12, 2026
Links: GitHub  ·  Packagist
Maintainer: tpetry

Laravel MySQL Visual Explains

License PHP Laravel Latest Version on Packagist GitHub Unit Tests Action Status GitHub Static Analysis Action Status GitHub Code Style Action Status

MySQL Query optimization with the EXPLAIN command is unnecessarily complicated: The output contains a lot of cryptic information that is incomprehensible or entirely misleading.

This Laravel package collects many query metrics that will be sent to mysqlexplain.com and transformed to be much easier to understand.

Installation

You can install the package via composer:

composer require tpetry/laravel-mysql-explain

Usage

Query Builder

Three new methods have been added to the query builder for very easy submission of query plans:

Type Action
visualExplain returns URL to processed EXPLAIN output
dumpVisualExplain dumps URL to processed EXPLAIN output and continue normal execution
ddVisualExplain dumps URL to processed EXPLAIN output and stops execution
explainForHumans (deprecated) returns URL to processed EXPLAIN output
dumpExplainForHumans (deprecated) dumps URL to processed EXPLAIN output and continue normal execution
ddExplainForHumans (deprecated) dumps URL to processed EXPLAIN output and stops execution
// $url will be e.g. https://mysqlexplain.com/explain/01j2gcrbsjet9r8rav114vgfsy
$url = Film::where('description', 'like', '%astronaut%')
    ->visualExplain();

// URL to EXPLAIN will be printed to screen
$users = Film::where('description', 'like', '%astronaut%')
    ->dumpVisualExplain()
    ->get();

// URL to EXPLAIN will be printed to screen & execution is stopped
Film::where('description', 'like', '%astronaut%')
    ->ddVisualExplain();

Raw Queries

In some cases you are executing raw SQL queries and don't use the query builder. You can use the MysqlExplain facade to get the EXPLAIN url for them:

use Tpetry\LaravelMysqlExplain\Facades\MysqlExplain;

// $url will be e.g. https://mysqlexplain.com/explain/01j2gctgtheyva7a7mhpv8azje
$url = MysqlExplain::submitQuery(
    DB::connection('mysql'),
    'SELECT * FROM actor WHERE first_name = ?',
    ['PENEL\'OPE'],
);

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Credits

License

The MIT License (MIT). Please see License File for more information.

Related Packages

weiyongsheng/laravel-performance

laravel performance and sql dump.

84 2
phoenixgao/laravel-postgres-extended-schema

Laravel database schema extended, added some PostgreSql features

2,249 6
marcelgwerder/laravel-api-handler

Package providing helper functions for a Laravel REST-API

93,997 155
maikealame/laravel-auto

Laravel helper to make almost everything for your project

4,657 41
marktopper/doctrine-dbal-timestamp-type

Add the timestamp type for Doctrine/DBAL

845,342 49