An open API service indexing awesome lists of open source software.

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

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.