https://github.com/cooltriks/bootstrap-laravel-crud-generator
Laravel 10 bootstrap crud generator
https://github.com/cooltriks/bootstrap-laravel-crud-generator
bootstrap-crud-generator bootstrap4 bootstrap5 crud-generator laravel laravel-bootstrap laravel-bootstrap-app laravel-bootstrap-crud-generator laravel-crud laravel-crud-generator laravel10x
Last synced: 5 days ago
JSON representation
Laravel 10 bootstrap crud generator
- Host: GitHub
- URL: https://github.com/cooltriks/bootstrap-laravel-crud-generator
- Owner: Cooltriks
- License: mit
- Created: 2023-09-17T02:05:18.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-09-29T07:58:28.000Z (over 1 year ago)
- Last Synced: 2025-04-03T21:51:05.498Z (3 months ago)
- Topics: bootstrap-crud-generator, bootstrap4, bootstrap5, crud-generator, laravel, laravel-bootstrap, laravel-bootstrap-app, laravel-bootstrap-crud-generator, laravel-crud, laravel-crud-generator, laravel10x
- Language: PHP
- Homepage: https://packagist.org/packages/coolhax/bootstrap-laravel-crud-generator
- Size: 37.1 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

)

This Laravel Generator package provides and generate Controller, Model (with eloquent relations) and Views in **Bootstrap** for your development of your applications with single command.
This packege based on - (https://github.com/awais-vteams/laravel-crud-generator)
**What Is New**
- **Relationship** with select in form and auto Relationship data pass in view
- **Select dropDown in form**
- **Search Filter added**
- **$serchable Property in Model**
- Bootstrap new Design **col-md-6**
- New Feature **Auto Route**- Will create **Model** with Eloquent relations
- Will create **Controller** with all resources
- Will create **views** in Bootstrap## Requirements
Laravel >= 9.0
PHP >= 8.1
Bootstrap >= 5.0.0## Start Up
```
composer create-project laravel/laravel project-name
```
```
cd project-name
```
```
composer require laravel/ui
```
```
php artisan ui bootstrap --auth
```
```
npm install
```
```
npm run build
```
## Installation
1 - Install
```
composer require coolhax/bootstrap-laravel-crud-generator --dev
```
2- Publish the default package's config
```
php artisan vendor:publish --tag=crud
```## Usage
```
php artisan make:crud {table_name}php artisan make:crud banks
```Add a route in `web.php`
- Now auto Route Feature **Not Needed**
```
Route::resource('banks', App\Http\Controlles\BankController:class);
```
Route name in plural slug case.#### Options
- Custom Route
```
php artisan make:crud {table_name} --route={route_name}
```## Example
*Model*
*Controller*
*Listing*
*Form*
## Author
Rohit Kumar // [Email Me](mailto:[email protected])