Skip to content

Commit

Permalink
🐛 Fix update command
Browse files Browse the repository at this point in the history
This should fix the "The command 'fortify-ui:install' does not exist." error message.
  • Loading branch information
roelreijneveld committed Feb 13, 2021
1 parent 48412f9 commit 395c78b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Commands/FortifyUITablerCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 395c78b

Please sign in to comment.