LaravelPackages.net
Acme Inc.
Toggle sidebar
mahabub/laravel-crud-and-repository-generator

laravel crud generator with repository pattern

2.187
11
v3.1.0
About mahabub/laravel-crud-and-repository-generator

mahabub/laravel-crud-and-repository-generator is a Laravel package for laravel crud generator with repository pattern. It currently has 11 GitHub stars and 2.187 downloads on Packagist (latest version v3.1.0). Install it with composer require mahabub/laravel-crud-and-repository-generator. Discover more Laravel packages by mahabub or browse all Laravel packages to compare alternatives.

Last updated

Laravel CRUD Generator with Repository Repository Pattern.

Installation

composer require mahabub/laravel-crud-and-repository-generator

Features

  • Controller
  • Model
  • Migration
  • Requests
  • Routes
  • Repository pattern
  • views

Configuration

Publish The Resources File
php artisan vendor:publish --tag=resources
Publish The Config File
php artisan vendor:publish --tag=crud-generator

Then go to config/crud-generator.php and configur laravel version

Usage

If what want to generate without folder. Just run the below command.

php artisan crud:make ModelName 

If what want to generate with Repository Patter without folder. Just run the below command.

php artisan crud:make ModelName --rep

If what want to generate in folder. Just run the below command.

php artisan crud:make FolderName/ModelName;

If what want to generate in folder with Repository Pattern. Just run the below command.

php artisan crud:make FolderName/ModelName --rep;

If what want to generate in folder without Repository Pattern. Just run the below command.

php artisan crud:make FolderName/ModelName ;

Usage Route In Web.php below Laravel 8

Route::resource('photos', 'PhotoController');

Or Route In Web.php for Laravel 8

Just Import The Class

Star History Chart