https://github.com/dcblogdev/mini
Mini is a small Laravel application with 2 modules to go with the book Laravel: The Modular Way
https://github.com/dcblogdev/mini
Last synced: 9 months ago
JSON representation
Mini is a small Laravel application with 2 modules to go with the book Laravel: The Modular Way
- Host: GitHub
- URL: https://github.com/dcblogdev/mini
- Owner: dcblogdev
- Created: 2022-01-07T14:37:54.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-01-17T20:26:12.000Z (about 4 years ago)
- Last Synced: 2025-04-01T03:35:00.457Z (11 months ago)
- Language: PHP
- Size: 1.72 MB
- Stars: 5
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Mini
Mini is a small Laravel application with 2 modules to go with the book [Laravel: The Modular Way](https://modularlaravel.com)
## Install
Clone this repo
```
git clone git@github.com:dcblogdev/mini.git mini
```
## Setup
Rename .env.example to .env
or rename using terminal
```
mv .env.example .env
```
Edit the database credentials and save.
Run composer install:
```
composer install
```
Generate APP_KEY:
```
php artisan key:generate
```
Run the migration and seeds in a single action:
```
php artisan db:build
```
Run the app:
```
php artisan serve
```
Next register a user account by clicking Register on the browser.
Upon registering you will be logged in, no email validation is enforced.
The 2 modules `Contacts` and `Serials` can be accessed from the sidebar.