deangite/laravel-crud

There is no license information available for the latest version (dev-master) of this package.

It creates crud for laravel

dev-master 2016-09-26 07:15 UTC

This package is not auto-updated.

Last update: 2024-05-01 17:30:52 UTC


README

Introduction

Laravel crud is a simple package to create CRUD operations creating table migrations.
This is for Laravel 5.2

Installation

  1. Get the package using composer

    composer require deangite/laravel-crud
    
  2. Add the service provider to /config/app.php.

    'providers' => [
        ...
    
        Deangite\LaravelCrud\LaracrudServiceProvider::class,
    ],

Usage

  1. To create migrations, models, controllers and routes, run
    php artisan laravel:crud
    
  2. After creating migration files you can simply run
    php artisan migrate
    
  3. It will create routes based on table name.