You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: readme.md
+6-5Lines changed: 6 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,11 +30,12 @@ After initializing a fresh instance of Laravel (and making all the necessary con
30
30
### Via composer
31
31
32
32
1.`Cd` to your Laravel app
33
-
2. Install this preset via `composer require laravel-frontend-presets/paper`. No need to register the service provider. Laravel 5.5 & up can auto detect the package.
34
-
3. Run `php artisan ui paper` command to install the Argon preset. This will install all the necessary assets and also the custom auth views, it will also add the auth route in `routes/web.php`
33
+
2. Type in your terminal: `composer require laravel/ui` and `php artisan ui vue --auth`
34
+
3. Install this preset via `composer require laravel-frontend-presets/paper`. No need to register the service provider. Laravel 5.5 & up can auto detect the package.
35
+
4. Run `php artisan ui paper` command to install the Argon preset. This will install all the necessary assets and also the custom auth views, it will also add the auth route in `routes/web.php`
35
36
(NOTE: If you run this command several times, be sure to clean up the duplicate Auth entries in routes/web.php)
36
-
4. In your terminal run `composer dump-autoload`
37
-
5. Run `php artisan migrate --seed` to create basic users table
37
+
5. In your terminal run `composer dump-autoload`
38
+
6. Run `php artisan migrate --seed` to create basic users table
38
39
39
40
### By using the archive
40
41
@@ -65,7 +66,7 @@ You can access the dashboard either by using the "**Dashboard**" link in the lef
65
66
66
67
You have the option to edit the current logged in user's profile (change name, email and password). To access this page just click the "**User profile**" link in the left sidebar or by adding **/profile** in the url.
67
68
68
-
The `App\Htttp\Controlers\ProfileController` handles the update of the user information.
69
+
The `App\Http\Controllers\ProfileController` handles the update of the user information.
0 commit comments