PHPackages                             dedermus/open-admin-core - 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. dedermus/open-admin-core

ActiveLibrary[Admin Panels](/categories/admin)

dedermus/open-admin-core
========================

open-admin-core. Open-source Laravel Admin panel. No pro or paid package, free &amp; open. Based on laravel-admin, with special thanks to z-song

v2.0.10(1y ago)5554↓100%412MITPHPPHP ^8.2

Since Apr 2Pushed 1y ago2 watchersCompare

[ Source](https://github.com/dedermus/open-admin-core)[ Packagist](https://packagist.org/packages/dedermus/open-admin-core)[ Docs](https://github.com/dedermus/open-admin-core.git)[ RSS](/packages/dedermus-open-admin-core/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (8)Versions (13)Used By (12)

 [ ![open-admin](https://camo.githubusercontent.com/346b9bad5f80dd5d09a3bccbbf196d6b337dbc95162541b19ce63543ba9076b0/68747470733a2f2f6f70656e2d61646d696e2e6f72672f6766782f6c6f676f2e706e67) ](https://laravel-admin.org/)

⛵`laravel-admin` - это конструктор административного интерфейса для laravel, который поможет вам создать CRUD-функции всего с помощью нескольких строк кода.

Данный конструктор является форком от проекта

 [Документация](https://laravel-admin.org/docs) | [Демо](https://demo.laravel-admin.org) | [Исходный код демо-версии](https://github.com/z-song/demo.laravel-admin.org) | [Расширения](https://github.com/open-admin-org)

 [ ![Packagist](https://camo.githubusercontent.com/6245a6088f3b1f5d50d6acd37d3198333e981dbc7e5b51e92ac200600752710d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f656e636f72652f6c61726176656c2d61646d696e2e7376673f6d61784167653d3235393230303026267374796c653d666c61742d737175617265) ](https://packagist.org/packages/dedermus/laravel-admin) [ ![Total Downloads](https://camo.githubusercontent.com/1a6d8373e4616160cbe4b85b964047c7aea98a51c0dace718e6b166b354a9cdd/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f656e636f72652f6c61726176656c2d61646d696e2e7376673f7374796c653d666c61742d737175617265) ](https://packagist.org/packages/dedermus/laravel-admin) [ ![Awesome Laravel](https://camo.githubusercontent.com/6cc6459afcc114423c0412c1b4ceb73abf547c737f57edc9cb88f9512c8bab93/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f417765736f6d652d4c61726176656c2d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265) ](https://gitlab.com/dedermus/laravel-admin.git)

 Вдохновлен проектами [SleepingOwlAdmin](https://github.com/sleeping-owl/admin), [rapyd-laravel](https://github.com/zofe/rapyd-laravel) и [laravel-admin](https://github.com/z-song/laravel-admin/).

Требования
----------

[](#требования)

- PHP ^8.2
- Laravel &gt;= ^11.9
- Fileinfo PHP Extension

Установка
---------

[](#установка)

Сначала установите laravel 11 или выше и убедитесь, что настройки подключения к базе данных верны.

подтягиваем скелет фреймворка

```
composer create-project laravel/laravel example-app

```

устанавливаем локаль и другие параметры в config/app.php

```
/*
|--------------------------------------------------------------------------
| Application URL
|--------------------------------------------------------------------------
|
| This URL is used by the console to properly generate URLs when using
| the Artisan command line tool. You should set this to the root of
| your application so that it is used when running Artisan tasks.
|
*/

'url' => env('APP_URL', null),

'asset_url' => env('ASSET_URL', null),

/*
|--------------------------------------------------------------------------
| Application Timezone
|--------------------------------------------------------------------------
|
| Here you may specify the default timezone for your application, which
| will be used by the PHP date and date-time functions. We have gone
| ahead and set this to a sensible default for you out of the box.
|
*/

'timezone' => 'Europe/Moscow',

/*
|--------------------------------------------------------------------------
| Application Locale Configuration
|--------------------------------------------------------------------------
|
| The application locale determines the default locale that will be used
| by the translation service provider. You are free to set this value
| to any of the locales which will be supported by the application.
|
*/

'locale' => 'ru',

```

```
php artisan storage:link

```

создаем БД с именем new (или с дугим на усмотрение разработчика)

настраваем подключение к БД в .env (примерные настройки для среды разработки)

```
DB_CONNECTION=pgsql
DB_HOST=127.0.0.1
DB_PORT=5432
DB_DATABASE=new_base
DB_USERNAME=postgres
DB_PASSWORD=postgres

```

Затем устанавливаем админ-панель
================================

[](#затем-устанавливаем-админ-панель)

```
composer require dedermus/open-admin-core

```

Затем запустите эти команды для публикации ресурсов и конфигурации:

```
php artisan vendor:publish --provider="OpenAdminCore\Admin\AdminServiceProvider"

```

После запуска команды вы можете найти файл конфигурации в `config/admin.php`, в этом файле вы можете изменить каталог установки, соединение с базой данных или имена таблиц. Так же в файле `config/filesystems.php` добавляем разрешения в раздел disks:

```
    'disks' => [

        ...

        'uploads' => [
            'driver' => 'local',
            'root' => public_path('uploads'),
            'url' => env('APP_URL').'/uploads',
            'visibility' => 'public',
        ],

        'admin' => [
            'driver' => 'local',
            'root' => public_path('uploads'),
            'url' => env('APP_URL').'/uploads',
            'visibility' => 'public',
        ],

        ...

```

Включение поддержки HTTPS

```
    /*
    |--------------------------------------------------------------------------
    | Access via `https`
    |--------------------------------------------------------------------------
    |
    | If your page is going to be accessed via https, set it to `true`.
    |
    */
    'https' => env('ADMIN_HTTPS', true),

```

Наконец, выполните следующую команду, чтобы завершить установку.

```
php artisan admin:install

```

Откройте `http://localhost/admin/` в браузере, используйте имя пользователя `admin` и пароль `admin` для входа.

Конфигурации
------------

[](#конфигурации)

Файл `config/admin.php` содержит массив конфигураций, там вы можете найти конфигурации по умолчанию.

Обновление
----------

[](#обновление)

Обновление до новой версии open-admin может потребовать обновления ресурсов, которые вы можете опубликовать с помощью:

```
php artisan vendor:publish --tag=open-admin-assets --force

```

Поддержка справа налево
-----------------------

[](#поддержка-справа-налево)

пройдись по этому пути `\vendor\dedermus\open-admin-core\src\Traits\HasAssets.php` и модифицируй `$baseCss` массив для загрузки справа налево (rtl) версии начальной загрузки и CSS-файлов AdminLTE.
**bootstrap.min.css** измените его на **bootstrap.rtl.min.css**
**AdminLTE.min.css** измените его на **AdminLTE.rtl.min.css**

Расширения от Zong
------------------

[](#расширения-от-zong)

РасширенияОписаниеlaravel-admin[helpers](https://github.com/laravel-admin-extensions/helpers)Несколько инструментов, которые помогут вам в разработке~1.0.2[media-manager](https://github.com/laravel-admin-extensions/media-manager)Предоставляет веб-интерфейс для управления локальными файлами.~1.0.2[api-tester](https://github.com/laravel-admin-extensions/api-tester)Помощь вам в тестировании локальных API laravel.~1.0.2[scheduling](https://github.com/laravel-admin-extensions/scheduling)Диспетчер задач планирования для laravel-admin~1.5[redis-manager](https://github.com/laravel-admin-extensions/redis-manager)Менеджер Redis для laravel-admin~1.5[backup](https://github.com/laravel-admin-extensions/backup)Интерфейс администратора для управления резервными копиями~1.5[log-viewer](https://github.com/laravel-admin-extensions/log-viewer)Просмотрщик лог-журналов для Laravel~1.5[config](https://github.com/laravel-admin-extensions/config)Менеджер конфигурации для laravel-admin~1.5[reporter](https://github.com/laravel-admin-extensions/reporter)Provides a developer-friendly web interface to view the exception~1.5[wangEditor](https://github.com/laravel-admin-extensions/wangEditor)A rich text editor based on [wangeditor](http://www.wangeditor.com/)~1.6[summernote](https://github.com/laravel-admin-extensions/summernote)A rich text editor based on [summernote](https://summernote.org/)~1.6[china-distpicker](https://github.com/laravel-admin-extensions/china-distpicker)一个基于[distpicker](https://github.com/fengyuanchen/distpicker)的中国省市区选择器~1.6[simplemde](https://github.com/laravel-admin-extensions/simplemde)A markdown editor based on [simplemde](https://github.com/sparksuite/simplemde-markdown-editor)~1.6[phpinfo](https://github.com/laravel-admin-extensions/phpinfo)Integrate the `phpinfo` page into laravel-admin~1.6[php-editor](https://github.com/laravel-admin-extensions/php-editor)
 [python-editor](https://github.com/laravel-admin-extensions/python-editor)
 [js-editor](https://github.com/laravel-admin-extensions/js-editor)
 [css-editor](https://github.com/laravel-admin-extensions/css-editor)
 [clike-editor](https://github.com/laravel-admin-extensions/clike-editor)Several programing language editor extensions based on code-mirror~1.6[star-rating](https://github.com/laravel-admin-extensions/star-rating)Star Rating extension for laravel-admin~1.6[json-editor](https://github.com/laravel-admin-extensions/json-editor)JSON Editor for Laravel-admin~1.6[grid-lightbox](https://github.com/laravel-admin-extensions/grid-lightbox)Turn your grid into a lightbox &amp; gallery~1.6[daterangepicker](https://github.com/laravel-admin-extensions/daterangepicker)Integrates daterangepicker into laravel-admin~1.6[material-ui](https://github.com/laravel-admin-extensions/material-ui)Material-UI extension for laravel-admin~1.6[sparkline](https://github.com/laravel-admin-extensions/sparkline)Integrates jQuery sparkline into laravel-admin~1.6[chartjs](https://github.com/laravel-admin-extensions/chartjs)Use Chartjs in laravel-admin~1.6[echarts](https://github.com/laravel-admin-extensions/echarts)Use Echarts in laravel-admin~1.6[simditor](https://github.com/laravel-admin-extensions/simditor)Integrates simditor full-rich editor into laravel-admin~1.6[cropper](https://github.com/laravel-admin-extensions/cropper)A simple jQuery image cropping plugin.~1.6[composer-viewer](https://github.com/laravel-admin-extensions/composer-viewer)A web interface of composer packages in laravel.~1.6[data-table](https://github.com/laravel-admin-extensions/data-table)Advanced table widget for laravel-admin~1.6[watermark](https://github.com/laravel-admin-extensions/watermark)Text watermark for laravel-admin~1.6[google-authenticator](https://github.com/ylic/laravel-admin-google-authenticator)Google authenticator~1.6Переработанные расширения от Open-Admin под Bootstrap 5.3

ExtensionDescriptionopen-admin[helpers](https://github.com/dedermus/helpers)Several tools to help you in development~1.0[media-manager](https://github.com/dedermus/media-manager)Provides a web interface to manage local files~1.0[config](https://github.com/dedermus/config)Config manager for open-admin~1.0[grid-sortable](https://github.com/dedermus/grid-sortable)Sortable grids~1.0[Ckeditor](https://github.com/open-admin-org/ckeditor)Ckeditor for forms~1.0[api-tester](https://github.com/dedermus/api-tester)Test api calls from the admin~1.0[scheduling](https://github.com/dedermus/scheduling)Show and test your cronjobs~1.0[phpinfo](https://github.com/open-admin-org/phpinfo)Show php info in the admin~1.0[log-viewer](https://github.com/dedermus/log-viewer)Log viewer for laravel~1.0.12[page-designer](https://github.com/open-admin-org/page-designer)Page designer to position items freely~1.0.18[reporter](https://github.com/open-admin-org/reporter)rovides a developer-friendly web interface to view the exception~1.0.18[redis-manager](https://github.com/open-admin-org/redis-manager)Redis manager for open-admin~1.0.20Авторы
------

[](#авторы)

Этот проект существует благодаря всем людям, которые вносят свой вклад. \[[Contribute](CONTRIBUTING.md)\]. [![](https://camo.githubusercontent.com/362423df252083c4a56d1d9cd833aead854756ba00fbb68239a584d7acc45f0b/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f6c61726176656c2d61646d696e2f636f6e7472696275746f72732e7376673f77696474683d38393026627574746f6e3d66616c7365)](graphs/contributors)

Backers
-------

[](#backers)

Thank you to all our backers! 🙏 \[[Become a backer](https://opencollective.com/laravel-admin#backer)\] [![](https://camo.githubusercontent.com/4d629c705dc370bd7789616b4ac2f9b2990c45074f305fc86b57dcaf066b0b4e/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f6c61726176656c2d61646d696e2f6261636b6572732e7376673f77696474683d383930)](https://opencollective.com/laravel-admin#backers)

Sponsors
--------

[](#sponsors)

Support this project by becoming a sponsor. Your logo will show up here with a link to your website. \[[Become a sponsor](https://opencollective.com/laravel-admin#sponsor)\] [![](https://camo.githubusercontent.com/411ad0437f582b4c06c7e6e4020380ea65e1be2a3c9ffcf58ceeab1fb6a645e3/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f6c61726176656c2d61646d696e2f73706f6e736f722f302f6176617461722e737667)](https://opencollective.com/laravel-admin/sponsor/0/website)[![](https://camo.githubusercontent.com/7cfeca87584f301fad3f5592621686d34eb162056c2bd88e7258fcb95c6cc087/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f6c61726176656c2d61646d696e2f73706f6e736f722f312f6176617461722e737667)](https://opencollective.com/laravel-admin/sponsor/1/website)[![](https://camo.githubusercontent.com/bb81bba24ca1ee3769c6c2bf4198877be404af807c668434ea9f3335f00b7b94/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f6c61726176656c2d61646d696e2f73706f6e736f722f322f6176617461722e737667)](https://opencollective.com/laravel-admin/sponsor/2/website)[![](https://camo.githubusercontent.com/5c58e3c83040732f3a673b69036d038e424fad1f735b59f19d3d85f1847efcb5/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f6c61726176656c2d61646d696e2f73706f6e736f722f332f6176617461722e737667)](https://opencollective.com/laravel-admin/sponsor/3/website)[![](https://camo.githubusercontent.com/67bb696c5f1f4b8e657244f2e054911da42a8b36d9b2fefb811672fd45311107/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f6c61726176656c2d61646d696e2f73706f6e736f722f342f6176617461722e737667)](https://opencollective.com/laravel-admin/sponsor/4/website)[![](https://camo.githubusercontent.com/3aa6876b0a72da0ba3c7f456c054f1c765f79f062041fc7e01825605e5ac10b4/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f6c61726176656c2d61646d696e2f73706f6e736f722f352f6176617461722e737667)](https://opencollective.com/laravel-admin/sponsor/5/website)[![](https://camo.githubusercontent.com/1cb62d8dd83638cc8ae70ac0313d3b9fc6913bd9b9a968598a06f175667aad01/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f6c61726176656c2d61646d696e2f73706f6e736f722f362f6176617461722e737667)](https://opencollective.com/laravel-admin/sponsor/6/website)[![](https://camo.githubusercontent.com/26cbbc6a99956e8b46a20ec32e7b7384385992d7299d3614e0b6a38e77913ed8/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f6c61726176656c2d61646d696e2f73706f6e736f722f372f6176617461722e737667)](https://opencollective.com/laravel-admin/sponsor/7/website)[![](https://camo.githubusercontent.com/7d558577abe1395cb612ade06f75a03ea8a79e908ad59999c12b00fd92c2192c/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f6c61726176656c2d61646d696e2f73706f6e736f722f382f6176617461722e737667)](https://opencollective.com/laravel-admin/sponsor/8/website)[![](https://camo.githubusercontent.com/399e5b40a8ecd4154813d8c039414197265b06484a956c04b1e4d5cc5c6e7219/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f6c61726176656c2d61646d696e2f73706f6e736f722f392f6176617461722e737667)](https://opencollective.com/laravel-admin/sponsor/9/website)

Other
-----

[](#other)

`laravel-admin` based on following plugins or services:

- [Laravel](https://laravel.com/)
- [AdminLTE](https://adminlte.io/)
- [Datetimepicker](http://eonasdan.github.io/bootstrap-datetimepicker/)
- [font-awesome](http://fontawesome.io)
- [moment](http://momentjs.com/)
- [Google map](https://www.google.com/maps)
- [Tencent map](http://lbs.qq.com/)
- [bootstrap-fileinput](https://github.com/kartik-v/bootstrap-fileinput)
- [jquery-pjax](https://github.com/defunkt/jquery-pjax)
- [Nestable](http://dbushell.github.io/Nestable/)
- [toastr](http://codeseven.github.io/toastr/)
- [X-editable](http://github.com/vitalets/x-editable)
- [bootstrap-number-input](https://github.com/wpic/bootstrap-number-input)
- [fontawesome-iconpicker](https://github.com/itsjavi/fontawesome-iconpicker)
- [sweetalert2](https://github.com/sweetalert2/sweetalert2)

Лицензия
--------

[](#лицензия)

`laravel-admin` is licensed under [The MIT License (MIT)](LICENSE).

###  Health Score

38

—

LowBetter than 84% of packages

Maintenance41

Moderate activity, may be stable

Popularity21

Limited adoption so far

Community21

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 66.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 ~22 days

Recently: every ~10 days

Total

12

Last Release

519d ago

Major Versions

v0.2.0-alpha → v1.0.12024-06-04

v1.0.1 → v2.0.12024-08-28

PHP version history (3 changes)v0.2.0-alphaPHP ~7.3|~8.0

v2.0.1PHP ^8.1

v2.0.2PHP ^8.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/42d5b6e1af612060284f1d52feba723a6304f41f9deb9d801f091d1b789738dc?d=identicon)[dedermus](/maintainers/dedermus)

---

Top Contributors

[![henzel](https://avatars.githubusercontent.com/u/6071449?v=4)](https://github.com/henzel "henzel (2 commits)")[![dedermus](https://avatars.githubusercontent.com/u/18327515?v=4)](https://github.com/dedermus "dedermus (1 commits)")

---

Tags

laravelgridopenformadminfreeopen-admin

### Embed Badge

![Health badge](/badges/dedermus-open-admin-core/health.svg)

```
[![Health](https://phpackages.com/badges/dedermus-open-admin-core/health.svg)](https://phpackages.com/packages/dedermus-open-admin-core)
```

###  Alternatives

[open-admin-org/open-admin

open-admin. Open-source Laravel Admin panel. No pro or paid package, free &amp; open. Based on laravel-admin, with special thanks to z-song

28464.9k22](/packages/open-admin-org-open-admin)[encore/laravel-admin

laravel admin

11.2k3.1M443](/packages/encore-laravel-admin)

PHPackages © 2026

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