imritesh/livecrud

Generate Basic Crud Operations With Livewire and Tailwind Css For Laravel
1,092 29
Install
composer require imritesh/livecrud
Latest Version:v2.3.1
License:MIT
Last Updated:Aug 10, 2026
Links: GitHub  ·  Packagist
Maintainer: riteshsingh1

LiveCrud

Packagist License Packagist Downloads Packagist Version

Live Crud Generator. This package generates Basic Crud with Livewire.

Features

  • Generate Complete Crud With Livewire Component and Blade Files
  • Create / Update / Delete Functional
  • Real Time Validation Already Added
  • Fuzzy Search Functional

Installation

Via Composer

composer require imritesh/livecrud

Prerequisites

  • Models should be in app/Models directory
  • Crud of only $fillable property will be generated
protected $fillable = ['name','username'];

Usage

php artisan crud:make Name_Of_Your_Model
  • This Command Will Generate Two Files
    • First Will be in app/HttpLivewire
    • Second Will be in resources/views/Livewire

For Bootstrap 4

  1. Publish config and change template = 'bootstrap'

  2. Please copy this script and paste in your layout just after @livewireScripts tag



<script type="text/javascript">
    window.livewire.on('showConfirmDelete', () => {
        $('#deleteModal').modal('show');
    });
    window.livewire.on('hideConfirmDelete', () => {
        $('#deleteModal').modal('hide');
    });
    window.livewire.on('showForm', () => {
                $('#showForm').modal('show');
            });
    window.livewire.on('hideForm', () => {
        $('#showForm').modal('hide');
    });
</script>


TODO

[] Bulma Support

Security

If you discover any security related issues, please email author email instead of using the issue tracker.

Credits

License

license. Please see the license file for more information.

Related Packages

reliese/laravel

Reliese Components for Laravel Framework code generation.

3,991,690 1,705
php-tmdb/laravel

Laravel Package for TMDB ( The Movie Database ) API. Provides easy access to the...

53,315 160
laravel-ja/laravel

The Laravel Framework.

5,667 17
kavenegar/laravel

laravel 4 and 5 kavenegar integration

368,693 86
laravel/laravel

The skeleton application for the Laravel framework.

64,930,508 84,972