2017 © Pedro Peláez
 

library admin

Laravel Admin Package

image

mrzeta/admin

Laravel Admin Package

  • Tuesday, May 31, 2016
  • by Meetrue
  • Repository
  • 1 Watchers
  • 0 Stars
  • 8 Installations
  • JavaScript
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

Simple Administrator Package for Laravel 5

Build Status Latest Stable Version Total Downloads Latest Unstable Version License HHVM Status, (*1)

Documentation

Installation, (*2)

You can install this package quickly via composer command line by running the following command in your terminal., (*3)

1: composer create-project laravel/laravel your-project-name --prefer-dist "5.1.*"
2: cd your-project-name
3: composer require mrzeta/admin

After the package is installed, we need to add the following service providers to the providers array in config/app.php., (*4)

// file: config/app.php
return [
    'providers' => [
        Mrzeta\Admin\Providers\SupportServiceProvider::class,
        Mrzeta\Admin\AdminServiceProvider::class,
    ]
];

, (*5)

Then we need to update the auth.model config value to Mrzeta\Admin\Entities\User., (*6)

// file: config/auth.php
return [
   'model' => Mrzeta\Admin\Entities\User::class,
];

If you want to use your App\User model, you can extends the Mrzeta\Admin\Entities\User class to your App\User or other model class., (*7)

// file: app/User.php
namespace App;

class User extends \Mrzeta\Admin\Entities\User
{
  //
}

Next, publish the package's config and assets by running this following command., (*8)

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

Next, install the package by running this following command., (*9)

php artisan admin:install

username : admin@meetrue.com, (*10)

password : suprise, (*11)

then please visit you website/admin/login, (*12)

enjoy it 😄, (*13)

Done, (*14)

Documentation is located in the wiki page., (*15)

Screenshot

Build Status, (*16)

License

This package is open-sourced software licensed under The BSD 3-Clause License, (*17)

The Versions

31/05 2016

dev-master

9999999-dev

Laravel Admin Package

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

by Mrzeta

backend admin administrator laravel5.1 mrzeta

27/05 2016

1.1

1.1.0.0

Laravel Admin Package

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

by Mrzeta

backend admin administrator laravel5.1 mrzeta

27/05 2016

1.0

1.0.0.0

Laravel Admin Package

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

by Mrzeta

backend admin administrator laravel5.1 mrzeta