LaravelPackages.net
Acme Inc.
Toggle sidebar
sagor110090/livewire-crud

Scaffold Livewire Components, migrations, factory and crud in one command based on database tables

327
2
3.2.0
About sagor110090/livewire-crud

sagor110090/livewire-crud is a Laravel package for scaffold livewire components, migrations, factory and crud in one command based on database tables. It currently has 2 GitHub stars and 327 downloads on Packagist (latest version 3.2.0). Install it with composer require sagor110090/livewire-crud. Discover more Laravel packages by sagor110090 or browse all Laravel packages to compare alternatives.

Last updated

Livewire Crud Generator

Latest Version on Packagist

A livewire CRUD Generation package to help scaffold basic site files. Package is autoloaded as per PSR-4 autoloading in any laravel version ^11.0 so no extra config required. However is has been tested on version ^10.0. It uses auth middleware thus installs breeze just incase you don't have any other auth mechanism.

Documentation

More detailed documentation can ne found at livewire-crud

Installation

You can install the package via Composer:

composer require sagor110090/livewire-crud --dev

Usage

After running composer require sagor110090/livewire-crud command just run:

php artisan crud:install

**This command will perfom below actions:

* Compile css/js based on `bootstrap and fontawesome/free`.
* Run `npm install && run dev`
* Flush *node_modules* files from you folder.

Then generate Crud by:

php artisan crud:generate {table-name}

**This command will generate:

* Livewire Component.
* Model.
* Views.    
* Factory.

**Remember to customise your genertaed factories and migrations if you need to use them later

License

The MIT License (MIT). Please see License File for more information.

Comments