1- # Laravel 10 .x blog
1+ # Laravel 11 .x blog
22
33The purpose of this repository is to show good development practices on [ Laravel] ( http://laravel.com/ ) as well as to present cases of use of the framework's features like:
44
5- - [ Authentication] ( https://laravel.com/docs/10 .x/authentication )
5+ - [ Authentication] ( https://laravel.com/docs/11 .x/authentication )
66- API
7- - [ Sanctum] ( https://laravel.com/docs/10 .x/sanctum )
8- - [ API Resources] ( https://laravel.com/docs/10 .x/eloquent-resources )
7+ - [ Sanctum] ( https://laravel.com/docs/11 .x/sanctum )
8+ - [ API Resources] ( https://laravel.com/docs/11 .x/eloquent-resources )
99 - Versioning
10- - [ Blade] ( https://laravel.com/docs/10 .x/blade )
11- - [ Broadcasting] ( https://laravel.com/docs/10 .x/broadcasting )
12- - [ Cache] ( https://laravel.com/docs/10 .x/cache )
13- - [ Email Verification] ( https://laravel.com/docs/10 .x/verification )
14- - [ Filesystem] ( https://laravel.com/docs/10 .x/filesystem )
15- - [ Helpers] ( https://laravel.com/docs/10 .x/helpers )
16- - [ Horizon] ( https://laravel.com/docs/10 .x/horizon )
17- - [ Localization] ( https://laravel.com/docs/10 .x/localization )
18- - [ Mail] ( https://laravel.com/docs/10 .x/mail )
19- - [ Migrations] ( https://laravel.com/docs/10 .x/migrations )
20- - [ Policies] ( https://laravel.com/docs/10 .x/authorization )
21- - [ Providers] ( https://laravel.com/docs/10 .x/providers )
22- - [ Requests] ( https://laravel.com/docs/10 .x/validation#form-request-validation )
23- - [ Seeding & Factories] ( https://laravel.com/docs/10 .x/seeding )
24- - [ Testing] ( https://laravel.com/docs/10 .x/testing )
25- - [ Homestead] ( https://laravel.com/docs/10 .x/homestead )
10+ - [ Blade] ( https://laravel.com/docs/11 .x/blade )
11+ - [ Broadcasting] ( https://laravel.com/docs/11 .x/broadcasting )
12+ - [ Cache] ( https://laravel.com/docs/11 .x/cache )
13+ - [ Email Verification] ( https://laravel.com/docs/11 .x/verification )
14+ - [ Filesystem] ( https://laravel.com/docs/11 .x/filesystem )
15+ - [ Helpers] ( https://laravel.com/docs/11 .x/helpers )
16+ - [ Horizon] ( https://laravel.com/docs/11 .x/horizon )
17+ - [ Localization] ( https://laravel.com/docs/11 .x/localization )
18+ - [ Mail] ( https://laravel.com/docs/11 .x/mail )
19+ - [ Migrations] ( https://laravel.com/docs/11 .x/migrations )
20+ - [ Policies] ( https://laravel.com/docs/11 .x/authorization )
21+ - [ Providers] ( https://laravel.com/docs/11 .x/providers )
22+ - [ Requests] ( https://laravel.com/docs/11 .x/validation#form-request-validation )
23+ - [ Seeding & Factories] ( https://laravel.com/docs/11 .x/seeding )
24+ - [ Testing] ( https://laravel.com/docs/11 .x/testing )
25+ - [ Homestead] ( https://laravel.com/docs/11 .x/homestead )
2626
2727Beside Laravel, this project uses other tools like:
2828
@@ -41,7 +41,7 @@ You can find some screenshots of the application on : [https://imgur.com/a/Jbnwj
4141
4242## Installation
4343
44- To create your development environment [ follow these instructions] ( https://laravel.com/docs/10 .x/installation ) .
44+ To create your development environment [ follow these instructions] ( https://laravel.com/docs/11 .x/installation#local-installation-using-herd ) .
4545
4646Setting up your development environment on your local machine:
4747``` bash
@@ -54,6 +54,8 @@ $ php artisan telescope:install
5454$ php artisan storage:link
5555```
5656
57+ Now open [ http://laravel-blog.test ] ( http://laravel-blog.test ) .
58+
5759### Mailer
5860
5961You can use [ Mailpit] ( https://github.com/axllent/mailpit ) to test your emails in development.
@@ -63,18 +65,18 @@ Once installed, open [http://localhost:8025](http://localhost:8025).
6365## Before starting
6466You need to run the migrations with the seeds :
6567``` bash
66- $ php artisan migrate --seed
68+ $ php artisan migrate:fresh --seed
6769```
6870
6971This will create a new user that you can use to sign in :
7072``` yml
71- email : darthvader@deathstar.ds
72- password : 4nak1n
73+ email : demo@demo.com
74+ password : demodemo
7375` ` `
7476
7577And then, compile the assets :
7678` ` ` bash
77- $ yarn dev # or yarn watch
79+ $ yarn dev
7880```
7981
8082Starting job for newsletter :
0 commit comments