Shift with red gradient lettering
Loading navigation...

Global Facades

Laravel
Legacy Code

Replace Facade references using the global namespace with their FQCN for improved code completion and static analysis.

Before

use DB;

After

use Illuminate\Support\Facades\DB;

← Back to the Workbench Tasks