PHPackages                             laradium/laradium - 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. laradium/laradium

ActiveLibrary[Admin Panels](/categories/admin)

laradium/laradium
=================

v2.0.17(5y ago)31703[28 PRs](https://github.com/laradium/laradium/pulls)MITCSS

Since Oct 9Pushed 3y agoCompare

[ Source](https://github.com/laradium/laradium)[ Packagist](https://packagist.org/packages/laradium/laradium)[ RSS](/packages/laradium-laradium/feed)WikiDiscussions master Synced 5d ago

READMEChangelog (10)Dependencies (8)Versions (75)Used By (0)

Package allows you to create advanced CRUD views with relations in light weight admin panel. Using plain laravel database structure, models and VueJS which allows to make it very flexible and can be adjusted up to your needs.

Installation
============

[](#installation)

For local development
---------------------

[](#for-local-development)

1. Add this to your project repositories list in `composer.json` file

```
"repositories": [
    {
        "type": "path",
        "url": "../packages/laradium"
    }
]

```

Directory structure should look like this

```
-Project
-packages
    --laradium
    --laradium-content

```

For global use
--------------

[](#for-global-use)

```
"repositories": [
        {
            "type": "git",
            "url": "https://github.com/laradium/laradium.git"
        }
    ]

```

2. `composer require laradium/laradium dev-master`
3. `php artisan vendor:publish --tag=laradium`
4. Configure `config/laradium.php` file with your preferences
5. Comment out `Illuminate\Translation\TranslationServiceProvider::class,` in `config/app.php` in order to enable translations
6. Run `php artisan migrate`

You should be up and running

Admin panel will be under

Default credentials (*can be change in config file*): email:, pw: laradium2018

Creating new resource
=====================

[](#creating-new-resource)

1. `php artisan laradium:resource Task`

It will create new resource under `App\Laradium\Resource`, resource should look like this

```
