Skip to content

Latest commit

 

History

History
37 lines (31 loc) · 1.01 KB

readme.md

File metadata and controls

37 lines (31 loc) · 1.01 KB

simple_laravel_crud

Simle Laravel CRUD. Simple CRUD operations.

Requirements

  • composer
  • mysql

Prerequisites

  1. Clone repository or download zip.
git clone [email protected]:buhijs/simple_laravel_crud.git
  1. After clonig repository or downloading, go to root folder and run folowing commands
composer install
composer update
  1. Change .env.example to .env and change the following file content area - database settings
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE= YOUR DATABASE YOU CREATED FOR THIS PROJECT (empty database)
DB_USERNAME= MYSQL USER (root or something else)
DB_PASSWORD= MYSQL USER PASSWORD
  1. Use php artisan migrate command to import database test table for tbis project
  2. You can start project two ways through commands
artisan php
php artisan serve php -S localhost:8080 -t public

http://localhost:8080/blog

But this is not blog. It is simple CRUD operations