PHPackages                             longnd/backpacksplit - 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. [Admin Panels](/categories/admin)
4. /
5. longnd/backpacksplit

ActiveLibrary[Admin Panels](/categories/admin)

longnd/backpacksplit
====================

:description

1.4(6y ago)212[2 issues](https://github.com/ViralS-longnd/backpacksplit/issues)MITPHP

Since May 17Pushed 6y agoCompare

[ Source](https://github.com/ViralS-longnd/backpacksplit)[ Packagist](https://packagist.org/packages/longnd/backpacksplit)[ Docs](https://github.com/longnd/backpacksplit)[ RSS](/packages/longnd-backpacksplit/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependencies (5)Versions (6)Used By (0)

BackpackSplit
=============

[](#backpacksplit)

[![Latest Version on Packagist](https://camo.githubusercontent.com/2e3e5812bdab86fe55cd9e62833291e1c5565195df8342b96ea92fce311bc935/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6c6f6e676e642f6261636b7061636b73706c69742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/longnd/backpacksplit)[![Total Downloads](https://camo.githubusercontent.com/e5180939f2ea13b307a7d51b9ff2897d04e81a200203e1486b5c90438189eb1f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6c6f6e676e642f6261636b7061636b73706c69742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/longnd/backpacksplit)[![Build Status](https://camo.githubusercontent.com/64828faea44468e3402d5d29f6e755299da518b527c8acf90c265704f915052d/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6c6f6e676e642f6261636b7061636b73706c69742f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/longnd/backpacksplit)[![StyleCI](https://camo.githubusercontent.com/cb13a877afd1dbe223c631789c3f922d3ace958fdb334a9cce9b26afefbc2ebd/68747470733a2f2f7374796c6563692e696f2f7265706f732f31323334353637382f736869656c64)](https://styleci.io/repos/12345678)

This is where your description should go. Take a look at [contributing.md](contributing.md) to see a to do list.

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

[](#installation)

Via Composer

```
$ composer require longnd/backpacksplit
```

Usage
-----

[](#usage)

Optional you can publish the configuration to provide a different service provider stub. The default is here.

```
$ php artisan vendor:publish --provider="LongND\BackpackSplit\BackpackSplitServiceProvider"
```

With DemoCrudController in App\\Http\\Controller\\Admin\\DemoCrudController we edit it if you have a default CRUD Controller:

```
namespace App\Http\Controllers\Admin;

use Backpack\CRUD\app\Http\Controllers\DemoController;

// VALIDATION: change the requests to match your own file names if you need form validation
use App\Http\Requests\DemoRequest as StoreRequest;
use App\Http\Requests\DemoRequest as UpdateRequest;
use Backpack\CRUD\CrudPanel;
use LongND\BackpackSplit\Traits\SetupModal;

/**
 * Class StoreCrudController
 * @package App\Http\Controllers\Admin
 * @property-read CrudPanel $crud
 */
class StoreCrudController extends CrudController
{
    use SetupModal;
    public function setup()
    {
        //code-here....
        $this->setupModal();
        //code-here...
    }
}
```

and if you want to create new backpack controller with modal crud you try:

```
$ php artisan backpack:crud demo --option=modal
```

to use ModalCRUD and result:

[![image](https://user-images.githubusercontent.com/50614639/57922381-d4797500-78c9-11e9-87ca-e659fd198df1.png)](https://user-images.githubusercontent.com/50614639/57922381-d4797500-78c9-11e9-87ca-e659fd198df1.png)

\####OR

```
namespace App\Http\Controllers\Admin;

use Backpack\CRUD\app\Http\Controllers\DemoController;

// VALIDATION: change the requests to match your own file names if you need form validation
use App\Http\Requests\DemoRequest as StoreRequest;
use App\Http\Requests\DemoRequest as UpdateRequest;
use Backpack\CRUD\CrudPanel;
use LongND\BackpackSplit\Traits\SetupSplit;

/**
 * Class StoreCrudController
 * @package App\Http\Controllers\Admin
 * @property-read CrudPanel $crud
 */
class StoreCrudController extends CrudController
{
    use SetupSplit;
    public function setup()
    {
        //code-here....
        $this->setupSplit('col-md-8');
        //code-here...
    }
}
```

and if you want to create new backpack controller with split crud you try:

```
$ php artisan backpack:crud demo --option=split
```

to use SplitCRUD and result:

[![image](https://user-images.githubusercontent.com/50614639/57922518-2de1a400-78ca-11e9-9567-7bc3ca970300.png)](https://user-images.githubusercontent.com/50614639/57922518-2de1a400-78ca-11e9-9567-7bc3ca970300.png)

Change log
----------

[](#change-log)

Please see the [changelog](changelog.md) for more information on what has changed recently.

Testing
-------

[](#testing)

```
$ composer test
```

Contributing
------------

[](#contributing)

Please see [contributing.md](contributing.md) for details and a todolist.

Security
--------

[](#security)

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

Credits
-------

[](#credits)

- [author name](https://github.com/longnd)
- [All Contributors](../../contributors)

License
-------

[](#license)

license. Please see the [license file](license.md) for more information.

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance0

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor1

Top contributor holds 72.7% 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 ~1 days

Total

5

Last Release

2552d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/e17877ed3f638528e2926804cca96c5ec007c40bb6433822c2e35a3ec2df56c4?d=identicon)[ViralS-longnd](/maintainers/ViralS-longnd)

---

Top Contributors

[![longcvp](https://avatars.githubusercontent.com/u/32560252?v=4)](https://github.com/longcvp "longcvp (8 commits)")[![ViralS-longnd](https://avatars.githubusercontent.com/u/50614639?v=4)](https://github.com/ViralS-longnd "ViralS-longnd (3 commits)")

---

Tags

laravelBackpackSplit

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/longnd-backpacksplit/health.svg)

```
[![Health](https://phpackages.com/badges/longnd-backpacksplit/health.svg)](https://phpackages.com/packages/longnd-backpacksplit)
```

###  Alternatives

[slowlyo/owl-admin

基于 laravel、amis 开发的后台框架~

61214.2k26](/packages/slowlyo-owl-admin)[takielias/tablar

Tablar: A Laravel Dashboard Preset Featuring Dark Mode and Dynamic Menu Generation for Effortless Navigation and Fast Development.

30817.7k3](/packages/takielias-tablar)[sebastienheyd/boilerplate

Laravel Boilerplate based on AdminLTE 3 with blade components, user management, roles, permissions, logs viewer, ...

28618.2k3](/packages/sebastienheyd-boilerplate)[takielias/tablar-kit

The Elegance of Tablar Dashboard

413.4k](/packages/takielias-tablar-kit)[lokielse/laravel-admin-generator

An Admin Panel Generator for Laravel 5

712.0k](/packages/lokielse-laravel-admin-generator)[joy/voyager-datatable

joy voyager datatable

1538.1k43](/packages/joy-voyager-datatable)

PHPackages © 2026

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