PHPackages                             emrebaskin/eadmin - 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. emrebaskin/eadmin

ActiveLibrary[Admin Panels](/categories/admin)

emrebaskin/eadmin
=================

Admin panel builder for laravel

1.0.3(6y ago)28PHPPHP ^7.2CI failing

Since Jan 22Pushed 6y ago1 watchersCompare

[ Source](https://github.com/emrebaskin/eadmin)[ Packagist](https://packagist.org/packages/emrebaskin/eadmin)[ RSS](/packages/emrebaskin-eadmin/feed)WikiDiscussions master Synced today

READMEChangelog (1)Dependencies (1)Versions (4)Used By (0)

```
'providers' => [
  ...
  EmreBaskin\Eadmin\Providers\eServiceProviders::class,
];

```

```
php artisan vendor:publish --tag=Eadmin --force

```

#### Usage

[](#usage)

**eForm::open()**

- available &amp; default options:

```
    [
        'method'  => 'POST',
        'action'  => '#',
        'class'   => '',
        'enctype' => '',
    ]

```

- example:

```
    {!! eForm::open(['action'  => route("saveForm"), 'class'   => 'register-form']) !!}

```

**eForm::close()**

- no available options

**eForm::input()**

- available &amp; default options:

```
    [
        'id'          => 'input-' . rand(100000000, 999999999),
        'name'        => 'unnamed' . rand(100000000, 999999999),
        'type'        => 'text',
        'label'       => '',
        'placeholder' => null,
        'value'       => '',
        'class'       => '',
        'disabled'    => false,
        'grid'        => 12,
    ];

```

- example:

```
    {!!
        eForm::input([
            'name'        => 'email',
            'type'        => 'email',
            'class'       => 'form-control',
            'placeholder' => 'example@example.com',
            'grid'        => 6
        ])
    !!}

```

**eForm::textarea()**

- available &amp; default options:

```
    [
        'id'          => 'input-' . rand(100000000, 999999999),
        'name'        => 'unnamed' . rand(100000000, 999999999),
        'rows'        => 3,
        'label'       => '',
        'placeholder' => null,
        'value'       => '',
        'class'       => '',
        'disabled'    => false,
        'grid'        => 12,
    ];

```

- example:

```
    {!!
        eForm::textarea([
            'name'        => 'description',
            'class'       => 'form-control',
            'placeholder' => 'Description..',
            'value'       => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer vitae lorem est.',
        ])
    !!}

```

**eForm::select()**

- available &amp; default options:

```
    [
        'id'          => 'input-' . rand(100000000, 999999999),
        'name'        => 'unnamed' . rand(100000000, 999999999),
        'datas'       => [],
        'selected'    => null,
        'noScript'    => false,
        'label'       => '',
        'placeholder' => null,
        'value'       => '',
        'class'       => '',
        'disabled'    => false,
        'grid'        => 12,
    ];

```

- example:

```
    {!!
        eForm::select([
            'name'        => 'category',
            'class'       => 'form-control',
            'placeholder' => 'Select Category',
            'selected'    => '1001_1003',
            'datas'       => [
                    '1000'      => 'Root',
                    '1001'      => 'Computer',
                    '1001_1003' => 'Computer > Desktop',
                    '1001_1004' => 'Computer > Laptop',
                    '1002'      => 'Phone'
                ]
        ])
    !!}

```

**eForm::button()**

- available &amp; default options:

```
    [
        'id'       => 'button-' . rand(100000000, 999999999),
        'label'    => __('Button'),
        'class'    => '',
        'color'    => 'dark',
        'disabled' => false,
    ];

```

- example:

```
    {!!
        eForm::button([
            'id'    => 'sendbutton',
            'class' => 'form-control',
            'color' => 'primary',
            'label' => 'Send Form'
        ])
    !!}

```

**eComp::table()**

- available &amp; default options:

```
    [
        'id'       => 'table-' . rand(100000000, 999999999),
        'class'    => '',
        'datas'    => [],
        'columns'  => [],
        'noScript' => false,
        'ajax'     => false,
    ];

```

- example:

```
    {!!
        eComp::table([
            'columns' => [
                'id'        => 'ID',
                'name'      => 'Name',
                'full_name' => 'Full Name',
            ],
            'ajax' => route('admin.categories.api.table'),
            'actionButtons' => [
                'edit' => 'admin.category.update',
                'delete' => 'admin.category.delete.action'
            ]
        ])
    !!}

```

**eHelper**

- controller:

```
    use EmreBaskin\Eadmin\Helpers\eHelper;

    return eHelper::datatableAjaxResponse($request,"App\Models\Category");

```

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity54

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 ~19 days

Total

2

Last Release

2281d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/b5638bd95b8340e6738fa24e070647a05dffde5fcccebff6958b58f193f0da86?d=identicon)[emrebskn](/maintainers/emrebskn)

---

Top Contributors

[![emrebaskin](https://avatars.githubusercontent.com/u/17949760?v=4)](https://github.com/emrebaskin "emrebaskin (17 commits)")

### Embed Badge

![Health badge](/badges/emrebaskin-eadmin/health.svg)

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

###  Alternatives

[backpack/crud

Quickly build admin interfaces using Laravel, Bootstrap and JavaScript.

3.4k3.4M207](/packages/backpack-crud)[eveseat/web

SeAT Web Interface

2723.2k135](/packages/eveseat-web)

PHPackages © 2026

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