- Clone the repository with git clone
- Copy .env.example file to .env and edit database credentials there
- Run composer update
- Run php artisan key:generate
- Run php artisan migrate --seed (it has some seeded data for your testing)
- That's it: launch the main URL.
- You can login to admin dashboard with default credentials ai.fx.intel@gmail.com - Admin@2022
Free to use and re-use any way you want.
Structure / Folders (where is everything?)
- Routes in
wep.php
included - Routes in
api.php
included - Views
Resources\Views\Admin
included - Database
Seeder
&Migrations
included
- Migrations include:
1. Users
2. Roles
3. Permissions
4. Permission_Role pivot table
5. Role_User pivot table
- Controllers:
- Admin - with User / Roles / Permissions
- Api - with User / Roles / Permissions
-
Model (not on a Models Folder but just
App\
) -
Requests Folder (CRUD Functions)
-
Resources\Admin