File "ExplainsQueries.php"
                                Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/vendor/laravel/framework/src/Illuminate/Console/Scheduling/ExplainsQueries.php
                File size: 452 bytes
                MIME-type: text/x-php
                Charset: utf-8
            
<?php
namespace Illuminate\Database\Concerns;
use Illuminate\Support\Collection;
trait ExplainsQueries
{
    /**
     * Explains the query.
     *
     * @return \Illuminate\Support\Collection
     */
    public function explain()
    {
        $sql = $this->toSql();
        $bindings = $this->getBindings();
        $explanation = $this->getConnection()->select('EXPLAIN '.$sql, $bindings);
        return new Collection($explanation);
    }
}