https://github.com/carlosfgti/crud-laravel-5.7
Simple Example Crud Laravel 5.7
https://github.com/carlosfgti/crud-laravel-5.7
Last synced: 4 months ago
JSON representation
Simple Example Crud Laravel 5.7
- Host: GitHub
- URL: https://github.com/carlosfgti/crud-laravel-5.7
- Owner: carlosfgti
- Created: 2018-09-12T20:48:15.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-17T16:41:17.000Z (over 6 years ago)
- Last Synced: 2024-10-29T17:48:28.704Z (9 months ago)
- Language: PHP
- Size: 229 KB
- Stars: 14
- Watchers: 3
- Forks: 10
- Open Issues: 3
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# 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
```