PHPackages                             saaksin/laravel-administrator - 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. saaksin/laravel-administrator

ActiveLibrary[Admin Panels](/categories/admin)

saaksin/laravel-administrator
=============================

데이터베이스 기반 라라벨 관리자 페이지

10.0.0(1y ago)167MITPHPPHP &gt;=8.1

Since Jun 5Pushed 1y ago1 watchersCompare

[ Source](https://github.com/SaAkSin/Laravel-Administrator)[ Packagist](https://packagist.org/packages/saaksin/laravel-administrator)[ Docs](https://github.com/SaAkSin/Laravel-Administrator)[ RSS](/packages/saaksin-laravel-administrator/feed)WikiDiscussions master Synced yesterday

READMEChangelog (7)Dependencies (2)Versions (58)Used By (0)

Laravel Administrator
=====================

[](#laravel-administrator)

기존 Frozonnode 의 Laravel-Administrator 가 더 이상 업데이트 되지않아, 이를 바탕으로하여 패키지를 개발 및 업그레이드하고 있습니다. Administrator is an administrative interface builder for [Laravel](http://laravel.com). With Administrator you can visually manage your Eloquent models and their relations, and also create stand-alone settings pages for storing site data and performing site tasks.

- **Author:** 이기석
- **Website:**
- **Version:** 10.0.0

[![Build Status](https://camo.githubusercontent.com/9a634a4d020d8f402a173ff37a3bf624d55dac949ff4562cd873466ce175e9f1/68747470733a2f2f7472617669732d63692e6f72672f46726f7a656e4e6f64652f4c61726176656c2d41646d696e6973747261746f722e706e673f6272616e63683d6d6173746572)](https://travis-ci.org/FrozenNode/Laravel-Administrator)

[![](https://camo.githubusercontent.com/63554e704f4003662007fde6cff3179b8c93bbf271fa10823b5fc84dffaf144d/68747470733a2f2f7261772e6769746875622e636f6d2f5361416b53696e2f4c61726176656c2d41646d696e6973747261746f722f6d61737465722f6578616d706c65732f696d616765732f6f766572766965772e6a7067)](https://camo.githubusercontent.com/63554e704f4003662007fde6cff3179b8c93bbf271fa10823b5fc84dffaf144d/68747470733a2f2f7261772e6769746875622e636f6d2f5361416b53696e2f4c61726176656c2d41646d696e6973747261746f722f6d61737465722f6578616d706c65732f696d616765732f6f766572766965772e6a7067)

Composer
--------

[](#composer)

라라벨 10 에서 composer 를 사용하여 쉽게 설치할 수 있습니다.

```
composer require "saaksin/laravel-administrator: 10.0.*"
```

설치 후, `config/app.php` 의 `providers` 배열에 서비스 프로파이더를 등록합니다.

```
'providers' => [
	...
	SaAkSin\Administrator\AdministratorServiceProvider::class
]
```

이 후, `php artisan vendor:publish` 을 실행합니다. `config/administrator.php` [설정파일](https://github.com/SaAkSin/Laravel-Administrator/blob/dev-10/docs/configuration.md)이 추가 되고, public 디렉토리에 관련 에셋, 뷰, 언어 파일 등이 복사됩니다. 설정 파일들은 config 디렉토리 하위가 아닌, 프로젝트 루트 디렉토리에서 administrator, administrator/settings 에 위치합니다.

### 설정파일

[](#설정파일)

설정파일명과 동일한 함수명으로 시작합니다. 가령, 설정 파일이 users.php 이라면, 반드시 users 함수를 통하여 설정(배열)을 반환합니다.(세션 등과 연계하여 조건에 따른 배열 결과를 반환할 수 있음)

```
function users()
{
    return array(
        'title' => '사용자 관리',
        'single' => '사용자',
        'model' => App\User::class,
        .....

    );
}
```

### 사용자 정의 js 파일 지정

[](#사용자-정의-js-파일-지정)

config/administrator.php 에 custom\_js 항목 추가

```
'custom_js' => array(
    'custom' => asset('js/custom.js'),
)
```

### HTTPS

[](#https)

app/Providers/AppServiceProvider 에서 라우트의 경로를 https 가 되도록 지정합니다.

```
public function boot(UrlGenerator $url)
{
    $url->forceScheme('https');
}
```

asset url 에 https 주소를 사용하도록 .env 에 ASSET\_URL 을 지정합니다.

```
ASSET_URL=https://도메인주소
```

### FULL TEXT 검색

[](#full-text-검색)

filter 에서 MySQL 의 full text 검색을 지원합니다.(대용량 검색)

```
'filters' => array(
    'no' => array(
        'title' => 'Number',
        'type' => 'fulltext_mysql'
    ),
),
```

### TEXT 빠른 검색

[](#text-빠른-검색)

filter 에서 시작 단어 검색 및 포커스 아웃 이벤트 시 검색을 시작합니다.

```
'filters' => array(
    'no' => array(
        'title' => 'Name',
        'type' => 'text_quick'
    ),
),
```

### 페이지 리로드

[](#페이지-리로드)

액션을 성공적으로 실행한 후, 현재 페이지를 리로드하는 기능을 제공합니다.

```
'action' => array(
    'reload' => true
),
```

### VIEW 모델 지원 (실험중)

[](#view-모델-지원-실험중)

모델 설정에서 view 모델 여부를 설정할 수 있습니다.(아직은 실험적인 기능이며, 조회시 약간의 성능 개선이 있습니다. MySQL InnoDB)

```
'view' => true
```

### Laravel 4

[](#laravel-4)

더 이상 지원하지 않습니다.

### Laravel 3

[](#laravel-3)

더 이상 지원하지 않습니다.

Documentation
-------------

[](#documentation)

The complete docs for Administrator can be found at . You can also find the docs in the `/src/docs` directory.

Copyright and License
---------------------

[](#copyright-and-license)

Administrator was written by Jan Hartigan of Frozen Node for the Laravel framework. Administrator is released under the MIT License. See the LICENSE file for details.

Recent Changelog
----------------

[](#recent-changelog)

### 10.0.0

[](#1000)

- 라라벨 10.0.0 지원

### 5.8.0

[](#580)

- 라라벨 5.8.0 지원

### 5.1.0

[](#510)

- 모델 파일내 세션 사용가능

###  Health Score

40

—

FairBetter than 88% of packages

Maintenance34

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community20

Small or concentrated contributor base

Maturity86

Battle-tested with a long release history

 Bus Factor1

Top contributor holds 82.9% 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 ~75 days

Recently: every ~413 days

Total

55

Last Release

643d ago

Major Versions

v4.16.5 → v5.0.02015-02-27

v4.16.6 → v5.0.22015-08-18

v4.16.7 → v5.0.32015-08-18

v4.17 → v5.8.02019-08-30

v5.8.4 → 10.0.02024-08-08

PHP version history (4 changes)v4.0.0PHP &gt;=5.3.0

v5.0.0PHP &gt;=5.4.0

v5.8.0PHP &gt;=7.1.3

10.0.0PHP &gt;=8.1

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/2267653?v=4)[SaAkSin](/maintainers/SaAkSin)[@SaAkSin](https://github.com/SaAkSin)

---

Top Contributors

[![janhartigan](https://avatars.githubusercontent.com/u/580052?v=4)](https://github.com/janhartigan "janhartigan (733 commits)")[![SaAkSin](https://avatars.githubusercontent.com/u/2267653?v=4)](https://github.com/SaAkSin "SaAkSin (42 commits)")[![StephenAntalis](https://avatars.githubusercontent.com/u/5741976?v=4)](https://github.com/StephenAntalis "StephenAntalis (16 commits)")[![andrewdworn](https://avatars.githubusercontent.com/u/3316025?v=4)](https://github.com/andrewdworn "andrewdworn (14 commits)")[![evgeny-golubev](https://avatars.githubusercontent.com/u/2686126?v=4)](https://github.com/evgeny-golubev "evgeny-golubev (9 commits)")[![judgej](https://avatars.githubusercontent.com/u/395934?v=4)](https://github.com/judgej "judgej (8 commits)")[![yusuf](https://avatars.githubusercontent.com/u/90121?v=4)](https://github.com/yusuf "yusuf (6 commits)")[![Morgon](https://avatars.githubusercontent.com/u/879077?v=4)](https://github.com/Morgon "Morgon (6 commits)")[![teethgrinder](https://avatars.githubusercontent.com/u/713918?v=4)](https://github.com/teethgrinder "teethgrinder (5 commits)")[![jijoel](https://avatars.githubusercontent.com/u/3487641?v=4)](https://github.com/jijoel "jijoel (4 commits)")[![weiserwebdev](https://avatars.githubusercontent.com/u/5560614?v=4)](https://github.com/weiserwebdev "weiserwebdev (4 commits)")[![spescina](https://avatars.githubusercontent.com/u/1956604?v=4)](https://github.com/spescina "spescina (4 commits)")[![happyDemon](https://avatars.githubusercontent.com/u/38573?v=4)](https://github.com/happyDemon "happyDemon (4 commits)")[![digidworks](https://avatars.githubusercontent.com/u/8074702?v=4)](https://github.com/digidworks "digidworks (3 commits)")[![crynobone](https://avatars.githubusercontent.com/u/172966?v=4)](https://github.com/crynobone "crynobone (3 commits)")[![martxel](https://avatars.githubusercontent.com/u/741187?v=4)](https://github.com/martxel "martxel (3 commits)")[![lokielse](https://avatars.githubusercontent.com/u/1573211?v=4)](https://github.com/lokielse "lokielse (2 commits)")[![Gwill](https://avatars.githubusercontent.com/u/692980?v=4)](https://github.com/Gwill "Gwill (2 commits)")[![javichito](https://avatars.githubusercontent.com/u/186259?v=4)](https://github.com/javichito "javichito (2 commits)")[![neilcrookes](https://avatars.githubusercontent.com/u/24232?v=4)](https://github.com/neilcrookes "neilcrookes (2 commits)")

---

Tags

laraveladminadministratorlaravel Administrator

### Embed Badge

![Health badge](/badges/saaksin-laravel-administrator/health.svg)

```
[![Health](https://phpackages.com/badges/saaksin-laravel-administrator/health.svg)](https://phpackages.com/packages/saaksin-laravel-administrator)
```

###  Alternatives

[jeroennoten/laravel-adminlte

Easy AdminLTE integration with Laravel

4.0k4.8M43](/packages/jeroennoten-laravel-adminlte)[frozennode/administrator

A database interface package for Laravel

1.9k249.4k](/packages/frozennode-administrator)[summerblue/administrator

A database interface package for Laravel, modified!

29329.8k1](/packages/summerblue-administrator)[orchestra/foundation

Orchestra Platform Foundation

5675.5k5](/packages/orchestra-foundation)[exodusanto/administrator

A database interface package for Laravel (Legacy of Frozennode Laravel-Administrator)

3910.6k](/packages/exodusanto-administrator)

PHPackages © 2026

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