2017 © Pedro Peláez
 

library laravel-simple-crud

A Laravel 5.4 simple CRUD generator via artisan commands

image

agustind/laravel-simple-crud

A Laravel 5.4 simple CRUD generator via artisan commands

  • Tuesday, May 9, 2017
  • by agustind
  • Repository
  • 1 Watchers
  • 0 Stars
  • 69 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 1 Versions
  • 5 % Grown

The README.md

Laravel Simple Crud

This is a very light CRUD generator for Laravel 5.4 without all the bloat. It uses Twitter Bootstrap for easy integration., (*1)

It requires an already working database connection and it generates a CRUD for an existing table. The resulting route will be /model (example /posts) with a list of all records and functionality to create, edit and delete records., (*2)

Installation

  1. Install with
composer require agustind/laravel-simple-crud dev-master
  1. Add service provider to /config/app.php file
'providers' => [
    ...
    Agustind\Crud\CrudServiceProvider::class,
],
  1. Use the new artisan command

``` php artisan crud:generate table_name, (*3)

If a layout exists at resources/views/layouts/app.blade.php it will be used from the generated views., (*4)

The Versions

09/05 2017

dev-master

9999999-dev

A Laravel 5.4 simple CRUD generator via artisan commands

  Sources   Download

MIT

by Agustin Dondo

laravel crud