LaravelPackages.net
Acme Inc.
Toggle sidebar
deangite/laravel-crud

It creates crud for laravel

13
1
About deangite/laravel-crud

deangite/laravel-crud is a Laravel package for it creates crud for laravel. It currently has 1 GitHub stars and 13 downloads on Packagist. Install it with composer require deangite/laravel-crud. Discover more Laravel packages by deangite or browse all Laravel packages to compare alternatives.

Last updated

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.
Comments