2017 © Pedro Peláez
 

library easy-crud

(Laravel 5+) Simple and effective way to generate CRUD from your models or database Edit

image

marabesi/easy-crud

(Laravel 5+) Simple and effective way to generate CRUD from your models or database Edit

  • Saturday, March 10, 2018
  • by marabesi
  • Repository
  • 1 Watchers
  • 30 Stars
  • 41 Installations
  • CSS
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 3 Versions
  • 8 % Grown

The README.md

easy-crud

Codacy Badge Build Status Latest Stable Version Total Downloads Latest Unstable Version License composer.lock HitCount, (*1)

(Laravel 5+) Simple and effective way to generate CRUD from your models or database, (*2)

Version Compatibility

Laravel EasyCrud
4.x.x Not supported
5.0.x Not supported
5.1.x 1.x.x
5.2.x 1.x.x
5.3.x Not supported
5.4.x Not supported
5.5.x Not supported

What you can do?

  • Generate CRUD from Laravel models
  • Generate CRUD from database table (not ready)

Powered by Gentelella theme

Gentelella Bootstrap Admin Template, (*3)

Features

  • Friendly admin to manage your data (CRUD)
  • Prevent collisions with defined routes
  • Beautiful admin template

Installing

composer require marabesi/easy-crud

Update the service provider list, (*4)

'providers' => [
    EasyCrud\Providers\EasyCrud::class,
]

Publish the vendor assets to you current project, (*5)

artisan vendor:publish

Now, you should have a file called easy-crud.php inside your config folder, open it and edit as you wish., (*6)

<?php

return [
    /**
     * All models that should have a CRUD. The key of the element will
     * appear as the menu label in the admin area
     */
    'models' => [
        'Users' => \App\User::class
    ],

    /**
     * URL that should be used to access the gentella admin
     * where you can manage all models that have CRUD
     */
    'url_base' => '/admin',

    /**
     * You might want to have some validation before accessing
     * the gentela admin, to achieve that, just inform the middleware 
     * class name in the array. It will go through each middleware declared 
     * below.
     */
    'middlewares' => [
    ]
];

Add every model that you want to see in the admin in the models array, the key should be the label name. It will appear in the admin area., (*7)

More info

https://marabesi.com/php/2017/09/21/easy-crud.html, (*8)

The Versions

10/03 2018

dev-master

9999999-dev

(Laravel 5+) Simple and effective way to generate CRUD from your models or database Edit

  Sources   Download

The Development Requires

22/09 2017

1.1.0

1.1.0.0

(Laravel 5+) Simple and effective way to generate CRUD from your models or database Edit

  Sources   Download

The Development Requires

10/09 2017

v1.0.0

1.0.0.0

(Laravel 5+) Simple and effective way to generate CRUD from your models or database Edit

  Sources   Download

The Development Requires