deangite / laravel-crud by deangite

It creates crud for laravel
13
1
2
Package Data
Maintainer Username: deangite
Maintainer Contact: dean.gite@inveen.com (Dean Gite)
Package Create Date: 2016-09-16
Package Last Update: 2016-09-26
Language: PHP
License: Unknown
Last Refreshed: 2025-02-12 15:05:44
Package Statistics
Total Downloads: 13
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 1
Total Watchers: 2
Total Forks: 0
Total Open Issues: 0

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.