From 866efa03c128af9d2a7db3d8fc572df6bb695c08 Mon Sep 17 00:00:00 2001 From: f4ilji Date: Wed, 30 Oct 2024 12:34:37 +0500 Subject: [PATCH] correct mistake --- routes/console.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/console.php b/routes/console.php index f0e7704..a948dd0 100644 --- a/routes/console.php +++ b/routes/console.php @@ -20,7 +20,7 @@ Artisan::command('inspire', function () { })->purpose('Display an inspiring quote'); if ('production' === App::environment()) { - Artisan::comman('migrate:fresh', function () { + Artisan::command('migrate:fresh', function () { $this->comment('You are not allowed to do this in production.'); })->describe('Override default command in production.'); }