Skip to content

nerdial/LaravelCRUD

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 

Repository files navigation

laravel-crud

a simple powerful to create crud for laravel in 5 mintues

copy commands/crud/ dir to your laravel : app/commands/

open and edit app/start/artisan.php

add these codes to end of the file

Artisan::add(new CrudMock);
Artisan::add(new CrudMake);

registers artisan command to laravel

then you should create your mock in order to build your crud

php artisan crud:mock user

this command creates a mock for user Model

you can find it in app/mocks/MockUser.php

in order to create Multiple mocks you can run this command

php artisan crud:mock user,company,category

mocks must be seprated with ","

About

a Simple Porwerful CRUD Generator for Laravel 4

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages