Skip to content

Commit

Permalink
Update command signature
Browse files Browse the repository at this point in the history
  • Loading branch information
zacksmash committed Feb 9, 2021
1 parent dc3050d commit 7c74de3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ composer require zacksmash/fortify-ui
Next, you'll need to run the install command:

```bash
php artisan fortify-ui:install
php artisan fortify:ui
```

This command will publish **FortifyUI's** views, add the `home` route to `web.php` and add the **FortifyUI** service provider to your `app/Providers` directory. This will also publish the service provider and config file for *Laravel Fortify*. Lastly, it will register both service providers in the `app.php` config file, under the providers array.
Expand All @@ -44,7 +44,7 @@ That's it, you're all setup! For advanced setup and configuration options, keep
The **FortifyUI** service provider registers the views for all of the authentication features. If you'd rather **not** include the **FortifyUI** service provider, you can skip generating it by using the `--skip-provider` flag.

```bash
php artisan fortify-ui:install --skip-provider
php artisan fortify:ui --skip-provider
```

Then, you can add this to your `AppServiceProvider` or `FortifyServiceProvider`, in the `boot()` method.
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/FortifyUICommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

class FortifyUICommand extends Command
{
public $signature = 'fortify-ui:install {--skip-provider}';
public $signature = 'fortify:ui {--skip-provider}';

public $description = 'Setup FortifyUI routes, service providers and views';

Expand Down

0 comments on commit 7c74de3

Please sign in to comment.