Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/carlosfgti/crud-laravel-5.7

Simple Example Crud Laravel 5.7
https://github.com/carlosfgti/crud-laravel-5.7

Last synced: 13 days ago
JSON representation

Simple Example Crud Laravel 5.7

Awesome Lists containing this project

README

        


Build Status
Total Downloads
Latest Stable Version
License

# Simple Example CRUD Laravel 5.7

> Example 5.7, news features to development

## Download
First, clone project:
``` bash
# clone
git clone https://github.com/carlosfgti/crud-laravel-5.7.git

# Access project
cd crud-laravel-5.7
```

## Config

``` bash
# Install dependencies
composer install

# Create file .env
cp .env.example .env

# Generate key
php artisan key:generate

# Run migrations (tables and Seeders)
php artisan migrate --seed

# Create Server
php artisan serve

# Access project
http://localhost:8080
```