From 77547c528b16f7f6ef8b7dd34ae2bab3f12d3473 Mon Sep 17 00:00:00 2001 From: snipe Date: Wed, 22 May 2019 00:52:14 -0700 Subject: [PATCH] Added the command loader to console kernel --- app/Console/Kernel.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index c5afadfc83..d5a97e932e 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -56,5 +56,6 @@ class Kernel extends ConsoleKernel protected function commands() { require base_path('routes/console.php'); + $this->load(__DIR__.'/Commands'); } }