File tree Expand file tree Collapse file tree 1 file changed +83
-0
lines changed Expand file tree Collapse file tree 1 file changed +83
-0
lines changed Original file line number Diff line number Diff line change 1+ # Laravel Scaffold
2+ Scaffold with Laravel 5.7 to using like base for future projects.
3+
4+
5+ ## Requirements
6+
7+ https://laravel.com/docs/5.7#server-requirements
8+
9+
10+ ## Install
11+
12+ ```
13+ git clone https://github.com/modulr/laravel-scaffold.git
14+ ```
15+
16+ #### Install Depencencies
17+
18+ ```
19+ composer install
20+ npm install
21+ ```
22+
23+ #### Database
24+
25+ ```
26+ // Create Data Base
27+ mysql -u{user} -p{password}
28+ mysql> create database modulr_laravel;
29+ ```
30+
31+
32+ ```
33+ // Add params into .env file
34+
35+ DB_CONNECTION=mysql
36+ DB_HOST=127.0.0.1
37+ DB_PORT=3306
38+ DB_DATABASE=laravel-scaffold
39+ DB_USERNAME=user
40+ DB_PASSWORD=password
41+ ```
42+
43+ ## Run
44+
45+ ```
46+ // Migrations
47+ php artisan migrate
48+
49+ // Seeder (optional)
50+ php artisan db:seed
51+
52+ // Compiling assets
53+ npm run dev
54+
55+ // Run serve
56+ php artisan serve
57+ ```
58+
59+ ## Tutorial/Documentation
60+
61+ https://medium.com/modulr/create-scaffold-with-laravel-5-7-f5ab353dff1c
62+
63+
64+ ## Modules
65+
66+ - Auth
67+ - Users & Roles --> Comming soon...
68+
69+
70+ ## Packages
71+
72+ - [ Laravel Authentication] ( https://laravel.com/docs/5.7/authentication )
73+ - [ Laravel Frontend] ( https://laravel.com/docs/5.7/frontend )
74+ - [ Vuejs] ( https://vuejs.org/ )
75+ - [ Bootstrap 4] ( https://getbootstrap.com/ )
76+ - [ Core UI] ( https://coreui.io/ )
77+ - [ Fontawesome 5] ( https://fontawesome.com/ )
78+ - [ simple-line-icons] ( http://simplelineicons.com/ )
79+
80+
81+
82+ ## License
83+ The MIT© License 2018 - Modulr.
You can’t perform that action at this time.
0 commit comments