| Install | |
|---|---|
composer require limatheus/livewire-crud |
|
| Latest Version: | v1.0.4 |
Live Crud Generator. This package generates Basic Crud with Livewire.

Via Composer
composer require limatheus/livewire-crud
app/Models directoryprotected $fillable = ['name','username'];
php artisan crud:make Name_Of_Your_Model
app/HttpLivewireresources/views/LivewirePublish config and change template = 'bootstrap'
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>
If you discover any security related issues, please email author email instead of using the issue tracker.
license. Please see the license file for more information.