PHPackages                             bestuniverse/laravel-admin-helper - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. bestuniverse/laravel-admin-helper

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

bestuniverse/laravel-admin-helper
=================================

Allow use HelperList, HelperForm and HelperOptions

115HTML

Since Oct 30Pushed 7y ago1 watchersCompare

[ Source](https://github.com/bestuniverse/laravel-admin-helper)[ Packagist](https://packagist.org/packages/bestuniverse/laravel-admin-helper)[ RSS](/packages/bestuniverse-laravel-admin-helper/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependenciesVersions (1)Used By (0)

laravel-admin-helper
====================

[](#laravel-admin-helper)

Allow generate list or form(create &amp; edit) with eloquent from Database.

- [Instalation](#instalation)
- [Use](#use)

Instalation
-----------

[](#instalation)

### Step 1: Install package

[](#step-1-install-package)

Add the package in your composer.json by executing the command.

```
composer require bestuniverse/laravel-admin-helper

```

Next, add the service provider to app/config/app.php

```
BestUniverse\AdminHelpers\AdminHelpersServiceProvider::class,

```

### Step 2: publish resources

[](#step-2-publish-resources)

```
php artisan vendor:publish

```

Use
---

[](#use)

### HelperList

[](#helperlist)

Use declaration

```
namespace App\Http\Controllers;

use Illuminate\Http\Request;
use Bestuniverse\AdminHelpers\Helpers As AdminHelper;

```

```
class HomeController extends Controller
{
	/**
	 * Display a listing of the resource.
	 *
	 * @return \Illuminate\Http\Response
	 */
	public function index()
	{
		// init helper list
		$helper = new AdminHelper\HelperList;

		// set title for generated list
		$helper->title = trans('Product list');
		// use datatables
		$helper->datatable = false;
		// number of showing item on one page
		$helper->items_per_page = 20;
		// eloquent model
		$helper->model = 'user';
		// allow call to action. ['edit', 'delete','add']
		// $helper->actions = ['edit'];

		// for example user model
		// set column list
		$helper->fields_list = array(
			'id' => array(
				'title' => trans('ID'),
				'align' => 'center',
				'width' => 25
			),
			'name' => array(
				'title' => trans('Name'),
				'align' => 'left',
				'width' => 'auto'
			),
			'email' => array(
				'title' => trans('email'),
				'align' => 'left',
				'width' => 'auto'
			),
			'created_at' => array(
				'title' => trans('Data add'),
				'align' => 'left',
				'width' => 'auto'
			)
		);

		// call render helperList view
		$data = $helper->render();

		return $data;
	}
}

```

###  Health Score

20

—

LowBetter than 13% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity40

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.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/11439000?v=4)[Juraj Potocky](/maintainers/OtiZ2)[@OtiZ2](https://github.com/OtiZ2)

---

Top Contributors

[![OtiZ2](https://avatars.githubusercontent.com/u/11439000?v=4)](https://github.com/OtiZ2 "OtiZ2 (13 commits)")

### Embed Badge

![Health badge](/badges/bestuniverse-laravel-admin-helper/health.svg)

```
[![Health](https://phpackages.com/badges/bestuniverse-laravel-admin-helper/health.svg)](https://phpackages.com/packages/bestuniverse-laravel-admin-helper)
```

PHPackages © 2026

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