Skip to the content.

Laravel Crud Generator

Packagist Licence StyleCI

This Laravel CRUD Generator v2.x package provides and generates Controller, Model (with eloquent relations), and Views in Bootstrap/Tailwind CSS for the development of your applications with a single command. This new v2.x will have stack options like bootstrap, tailwind, livewire(Livewire views will be generated in Tailwind CSS), and API only.

This is the best crud generator for a blank Laravel project installation too. This will auto install the starter kit laravel/breeze or laravel/ui (for bootstrap 5) for blank Laravel installation.

Requirements

Laravel >= 10.x
PHP >= 8.1

Installation

1 - Install

composer require ibex/crud-generator --dev

2- Publish the default package’s config (optional)

php artisan vendor:publish --tag=crud

For older Laravel(<10.x) versions please use v1.x

composer require ibex/crud-generator:1.6 --dev

Usage

php artisan make:crud {table_name}

php artisan make:crud banks

Add a route in web.php

Route::resource('banks', BankController::class);

For Livewire add routes below

Route::get('/banks', \App\Livewire\Banks\Index::class)->name('banks.index');
Route::get('/banks/create', \App\Livewire\Banks\Create::class)->name('banks.create');
Route::get('/banks/show/{bank}', \App\Livewire\Banks\Show::class)->name('banks.show');
Route::get('/banks/update/{bank}', \App\Livewire\Banks\Edit::class)->name('banks.edit');

For api add routes below

Route::apiResource('banks', BankController::class);

Route name in plural slug case.

Options

php artisan make:crud banks bootstrap //This will create views in Bootstrap 5 using Blade php artisan make:crud banks tailwind //This will create views in Tailwind css using Blade php artisan make:crud banks livewire //This will create views in Tailwind css with Livewire components php artisan make:crud banks api //This will create API only controllers

 - Custom Route

php artisan make:crud {table_name} –route={route_name}



## Examples

*Model*
<img width="100%" alt="image" src="https://github.com/awais-vteams/laravel-crud-generator/assets/10154558/6b3c3dc1-a983-4893-a45c-94dbb8da50fc">


*Controller*
<img width="100%" alt="image" src="https://github.com/awais-vteams/laravel-crud-generator/assets/10154558/6a7948ed-90b7-46f9-a8b3-abb56fe0fb71">

*Livewire component*
<img width="100%" alt="image" src="https://github.com/awais-vteams/laravel-crud-generator/assets/10154558/e4c3bca5-f27a-41a8-a5bd-00c51b156235">

*API only controller*

<img width="500" alt="image" src="https://github.com/awais-vteams/laravel-crud-generator/assets/10154558/a42329a8-58e7-49ef-8e21-b6227555542b">


*Tailwind CSS*
<img width="100%" alt="image" src="https://github.com/awais-vteams/laravel-crud-generator/assets/10154558/b5ca686a-5a3b-4c60-849c-e757d16dc1a0">


*Bootstrap*
![Listing](https://i.imgur.com/UH5XGuw.png)


*Tailwind Form*

<img width="756" alt="image" src="https://github.com/awais-vteams/laravel-crud-generator/assets/10154558/b7d437ac-5d2b-4673-80ab-c2f7eb88e835">

*Bootstrap Form*
![Form](https://i.imgur.com/poRiZRO.png)


## Personalize  
You have the possibility of 100% customizing the generated views, this is achieved in the following way:    

- Run this command `php artisan vendor:publish --tag=crud` this will create the `crud.php` file in your config/ folder.
- Update the variable `stub_path`, to your own stub folder like `'stub_path' => resource_path('stubs/'),`  
- Copy the stubs files from package

php artisan vendor:publish –tag=stubs-crud ```

Author

M Awais // Email Me

Hire Me LinkedIn

Buy me a Coffee

ko-fi