*/ protected $commands = [ ImportLegacyUsers::class, ImportCategories::class, MigrateFeaturedWorks::class, \App\Console\Commands\ResetAllUserPasswords::class, ]; /** * Define the application's command schedule. */ protected function schedule(\Illuminate\Console\Scheduling\Schedule $schedule): void { // $schedule->command('inspire')->hourly(); } /** * Register the commands for the application. */ protected function commands(): void { $this->load(__DIR__ . '/Commands'); require base_path('routes/console.php'); } }