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: upgrade.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -68,7 +68,7 @@ Then, update any reference to the old directories in your `webpack.mix.js` file:
68
68
69
69
A new directory, `svg`, was added to the `public` directory. It contains four svg files: `403.svg`, `404.svg`, `500.svg`, and `503.svg`, which are displayed on their respective error pages.
70
70
71
-
You may get the files [from GitHub](https://github.com/laravel/laravel/tree/master/public/svg).
71
+
You may get the files [from GitHub](https://github.com/laravel/laravel/tree/5.7/public/svg).
72
72
73
73
### Authentication
74
74
@@ -333,7 +333,7 @@ As of Laravel 5.7, these values will be cast to the corresponding PHP constants
333
333
334
334
**Likelihood Of Impact: Optional**
335
335
336
-
If you choose to use Laravel's new [email verification services](/docs/{{version}}/verification), you will need to add additional scaffolding to your application. First, add the `VerificationController` to your application: [App\Http\Controllers\Auth\VerificationController](https://github.com/laravel/laravel/blob/master/app/Http/Controllers/Auth/VerificationController.php).
336
+
If you choose to use Laravel's new [email verification services](/docs/{{version}}/verification), you will need to add additional scaffolding to your application. First, add the `VerificationController` to your application: [App\Http\Controllers\Auth\VerificationController](https://github.com/laravel/laravel/blob/5.7/app/Http/Controllers/Auth/VerificationController.php).
337
337
338
338
You will also need to modify your `App\User` model to implement the `MustVerifyEmail` contract:
339
339
@@ -372,7 +372,7 @@ Next, your user table must contain an `email_verified_at` column to store the da
In order to send the email when a user is registered, you should register following events and listeners in your [App\Providers\EventServiceProvider](https://github.com/laravel/laravel/blob/master/app/Providers/EventServiceProvider.php) class:
375
+
In order to send the email when a user is registered, you should register following events and listeners in your [App\Providers\EventServiceProvider](https://github.com/laravel/laravel/blob/5.7/app/Providers/EventServiceProvider.php) class:
376
376
377
377
use Illuminate\Auth\Events\Registered;
378
378
use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
@@ -505,4 +505,4 @@ Laravel 5.7 introduces improved testing tools for Artisan commands. By default,
505
505
506
506
### Miscellaneous
507
507
508
-
We also encourage you to view the changes in the `laravel/laravel`[GitHub repository](https://github.com/laravel/laravel). While many of these changes are not required, you may wish to keep these files in sync with your application. Some of these changes will be covered in this upgrade guide, but others, such as changes to configuration files or comments, will not be. You can easily view the changes with the [GitHub comparison tool](https://github.com/laravel/laravel/compare/5.6...master) and choose which updates are important to you.
508
+
We also encourage you to view the changes in the `laravel/laravel`[GitHub repository](https://github.com/laravel/laravel). While many of these changes are not required, you may wish to keep these files in sync with your application. Some of these changes will be covered in this upgrade guide, but others, such as changes to configuration files or comments, will not be. You can easily view the changes with the [GitHub comparison tool](https://github.com/laravel/laravel/compare/5.6...5.7) and choose which updates are important to you.
0 commit comments