emr/crud

dev-master 2019-07-07 18:55 UTC

This package is not auto-updated.

Last update: 2024-04-23 08:09:53 UTC


README

Latest Version on Packagist License

Includes laravel; CRUD (Create, Read, Update, Delete)

Author:Emrullah İLÇİN

Installation

  1. Create laravel project // use a project name; ex: proje1 or any
composer create-project laravel/laravel proje1
cd proje1
  1. Install crud

composer require emr/crud

  1. edit .env // add your user and password into mysql
DB_DATABASE=test
DB_USERNAME=test
DB_PASSWORD=test
  1. Sql table create

php artisan migrate

4.1. if you want see DB table with "php artisan"

php artisan tinker # test; See "null" message; because the table is empty; it is OK;

>>>Emr\Crud\Task::all();
>>>q

Usage

Web server start

ex: php artisan serve --host=94.177.187.77 --port=8000

Browser test

ex: http://94.177.187.77:8000/crud/TaskListesi