emr / crud
Crud
dev-master
2019-07-07 18:55 UTC
This package is not auto-updated.
Last update: 2025-03-11 12:26:41 UTC
README
Includes laravel; CRUD (Create, Read, Update, Delete)
Author:Emrullah İLÇİN
Installation
- Create laravel project // use a project name; ex: proje1 or any
composer create-project laravel/laravel proje1
cd proje1
- Install crud
composer require emr/crud
edit .env
// add your user and password into mysql
DB_DATABASE=test
DB_USERNAME=test
DB_PASSWORD=test
- 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