PHPackages                             kdion4891/laravel-ajax-crud - 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. kdion4891/laravel-ajax-crud

ActiveLibrary[Framework](/categories/framework)

kdion4891/laravel-ajax-crud
===========================

Build Laravel 6 CRUD apps in record time!

1.0.1(6y ago)711643MITPHPCI failing

Since Dec 14Pushed 6y ago4 watchersCompare

[ Source](https://github.com/kdion4891/laravel-ajax-crud)[ Packagist](https://packagist.org/packages/kdion4891/laravel-ajax-crud)[ Docs](https://github.com/kdion4891/laravel-ajax-crud)[ RSS](/packages/kdion4891-laravel-ajax-crud/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependencies (3)Versions (3)Used By (0)

**Looking for more of an admin panel package?**

Check out my latest package, Valiant:

A full featured Laravel 6 admin panel package!

---

[![Imgur](https://camo.githubusercontent.com/fb77e32c0f98f498800a75bbdedfc4f301a9e0cedc6a521e06da7b107b04461e/68747470733a2f2f692e696d6775722e636f6d2f546a333133566f2e6a7067)](https://camo.githubusercontent.com/fb77e32c0f98f498800a75bbdedfc4f301a9e0cedc6a521e06da7b107b04461e/68747470733a2f2f692e696d6775722e636f6d2f546a333133566f2e6a7067)

Laravel AJAX CRUD
=================

[](#laravel-ajax-crud)

LAC is a Laravel 6 package designed to integrate beautifully while saving you tons of time. Get a complete CRUD interface done in minutes by adding a few lines of code to your models.

**Features include:**

- Full Laravel 6 auth &amp; resource integration
- Unobtrusive implementation to keep you in control
- Field, action, &amp; bulk action helper classes
- Scaffolding command to create files for you
- Intuitive, responsive UI design
- AJAX validation &amp; responses
- Ease of use and customization

**Links of interest:**

- [Docs](https://github.com/kdion4891/laravel-ajax-crud/tree/master/docs/readme.md)
- [Screenshots](https://imgur.com/a/uo1ZST5)
- [Support](https://github.com/kdion4891/laravel-ajax-crud/issues)
- [Contributions](https://github.com/kdion4891/laravel-ajax-crud/pulls)
- [Buy me a coffee](https://ko-fi.com/kdion4891)

Installation
============

[](#installation)

Require the package:

```
composer require kdion4891/laravel-ajax-crud

```

Publish the nav view, CSS, &amp; JS files:

```
php artisan vendor:publish --tag=install

```

Integrate the auth scaffolding:

```
php artisan lac:auth

```

Quick Start
===========

[](#quick-start)

Make scaffolding files for a new model (a `Vehicle`, for example):

```
php artisan lac:make Vehicle

```

Update the `LacField`s in the new `Vehicle` model class:

```
public function fields()
{
    return [
        LacField::make('ID')
            ->tableColumn()->tableSearchable()->tableOrder('desc'),

        LacField::make('Brand')
            ->tableColumn()->tableSearchable()->tableSortable()
            ->input()->inputCreate()->inputEdit()
            ->rules(['required']),

        LacField::make('Color')
            ->tableColumn()->tableSearchable()->tableSortable()
            ->inputSelect(['Red', 'Green', 'Blue'])->inputCreate()->inputEdit(),

        LacField::make('Created At')
            ->tableColumn()->tableSearchable()->tableHidden(),

        LacField::make('Updated At')
            ->detailsHidden(),
    ];
}

```

Update the new `*_create_vehicles_table` migration file with your field columns:

```
Schema::create('vehicles', function (Blueprint $table) {
    $table->bigIncrements('id');
    $table->string('brand');
    $table->string('color')->nullable();
    $table->timestamps();
});

```

Run the migration:

```
php artisan migrate

```

Log into your app with any auth `User` and click the `Vehicles` link in the navbar to view the CRUD.

[Learn more in the docs](https://github.com/kdion4891/laravel-ajax-crud/tree/master/docs/readme.md).

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity24

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

2

Last Release

2341d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/9b5c8e6bc70c7c769121ef84848d08f6e1d48d6c43295b19ecbcf7b3eda3b995?d=identicon)[kdion4891](/maintainers/kdion4891)

---

Top Contributors

[![kdion4891](https://avatars.githubusercontent.com/u/54263485?v=4)](https://github.com/kdion4891 "kdion4891 (1 commits)")

### Embed Badge

![Health badge](/badges/kdion4891-laravel-ajax-crud/health.svg)

```
[![Health](https://phpackages.com/badges/kdion4891-laravel-ajax-crud/health.svg)](https://phpackages.com/packages/kdion4891-laravel-ajax-crud)
```

###  Alternatives

[nasirkhan/module-manager

Module Manager &amp; Generator for Laravel Starter Kit (https://github.com/nasirkhan/laravel-starter)

1039.7k2](/packages/nasirkhan-module-manager)[codewithdennis/larament

Larament is a time-saving starter kit to quickly launch Laravel 13.x projects. It includes FilamentPHP 5.x pre-installed and configured, along with additional tools and features to streamline your development workflow.

3691.5k](/packages/codewithdennis-larament)[ecotone/laravel

Laravel integration for Ecotone

21307.6k3](/packages/ecotone-laravel)[kejojedi/crudify

Laravel 7 CRUD app scaffolding &amp; generator.

491.6k](/packages/kejojedi-crudify)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
