From 395c78baacb0bee51e307b73379339e99a60462b Mon Sep 17 00:00:00 2001 From: RoelReijn Date: Sat, 13 Feb 2021 21:02:03 +0100 Subject: [PATCH] :bug: Fix update command This should fix the "The command 'fortify-ui:install' does not exist." error message. --- src/Commands/FortifyUITablerCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Commands/FortifyUITablerCommand.php b/src/Commands/FortifyUITablerCommand.php index b063719..567b8b3 100644 --- a/src/Commands/FortifyUITablerCommand.php +++ b/src/Commands/FortifyUITablerCommand.php @@ -16,7 +16,7 @@ public function handle() // confirm the installation if ($this->confirm('Do you wish to continue? Please only continue on a fresh Laravel installation since multiple files are overwritten by the installer.', false)) { // install fortifyUI - \Artisan::call('fortify-ui:install'); + \Artisan::call('fortify:ui'); $this->info('FortifyUI has been installed. Proceeding to install Tabler.io.'); // publish the assets, routes, controllers, etc.