-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGuide
executable file
·33 lines (20 loc) · 960 Bytes
/
Guide
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
php artisan key:generate
- How to run the project
php artisan serve
- You can enable the maintenance mode on your Laravel web application using the following command
php artisan down
- you can disable the maintenance mode on your web application using following command
php artisan up
- Laravel uses the following command to create forms and the associated controllers to perform authentication
php artisan make:auth
- Create database with name data_entry in mysql
- php artisan make:model --migration Book
- php artisan make:model --migration Page
- php artisan make:controller BookController --resource
- php artisan make:controller PageController --resource
- Run php artisan migrate
- Run php artisan db:seed to run seeders, if any.
- Run php artisan serve
References:
- https://www.tutorialspoint.com/laravel/laravel_installation.htm
- https://www.tutsmake.com/laravel-5-7-create-first-ajax-crud-application/