PHPackages                             rahulshah/crudone - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. rahulshah/crudone

ActiveLibrary[Framework](/categories/framework)

rahulshah/crudone
=================

A Laravel Livewire CRUD package with dynamic table and form handling

v1.0.0(1y ago)14MITBladePHP ^8.1

Since Mar 25Pushed 1y ago1 watchersCompare

[ Source](https://github.com/rahulshah5/crud-one)[ Packagist](https://packagist.org/packages/rahulshah/crudone)[ RSS](/packages/rahulshah-crudone/feed)WikiDiscussions main Synced today

READMEChangelogDependencies (2)Versions (2)Used By (0)

CRUDOne Documentation
=====================

[](#crudone-documentation)

CRUDOne is a powerful Laravel Livewire package that simplifies CRUD operations with dynamic table and form handling. It provides a flexible, reusable Table component that can be easily integrated into your Laravel applications.

Requirements
------------

[](#requirements)

- PHP 8.1+
- Laravel 10.0+
- Livewire 3.0+
- Bootstrap 5.0+ (CSS and JS)

Features
--------

[](#features)

- Dynamic table with pagination
- Sorting and searching
- Add, edit, and delete operations
- Form validation
- File uploads (single and multiple)
- Foreign key relationship handling
- Status toggling
- Custom operations hooks
- Responsive design

Installation
------------

[](#installation)

Install the package via Composer:

```
composer require rahulshah/crudone
```

Publish the assets:

```
php artisan vendor:publish --provider="RahulShah\CRUDOne\CRUDOneServiceProvider" --tag="crudone"
```

### Livewire Configuration

[](#livewire-configuration)

Make sure Livewire is properly configured in your application. Add the Livewire scripts and styles to your layout:

```

    @livewireStyles

    @livewireScripts

```

### Bootstrap Requirement

[](#bootstrap-requirement)

This package uses Bootstrap 5 for styling. Make sure to include Bootstrap CSS and JS in your application:

```

```

Basic Usage
-----------

[](#basic-usage)

### Create a Livewire Component

[](#create-a-livewire-component)

```
