Skip to content

deangite/laravel-crud

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 

Repository files navigation

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.

About

This package will create a starter crud for each table

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages