Palzin Track
Get 15% off with code PTRACKSIGNUP15 

Laravel Diary Logo

The Laravel Application Console Kernel

The application console kernel, defined in the app/Console/Kernel.php file, is responsible for specifying which custom commands should be available and when to automatically execute various commands and tasks using the task scheduler. This console kernel extends the Laravel framework console kernel located in the vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php. While being separate sections, the application and console kernels are actually the same thing, differentiated...