2017 © Pedro Peláez
 

library laravel-admin

Base admin package for Laravel 5

image

za-laravel/laravel-admin

Base admin package for Laravel 5

  • Saturday, October 8, 2016
  • by CawaKharkov
  • Repository
  • 3 Watchers
  • 3 Stars
  • 916 Installations
  • JavaScript
  • 4 Dependents
  • 0 Suggesters
  • 6 Forks
  • 0 Open issues
  • 1 Versions
  • 4 % Grown

The README.md

laravel-admin

Build Status Scrutinizer Code Quality Latest Stable Version Total Downloads Latest Unstable Version License, (*1)

Base admin package for Laravel 5, (*2)

Installation

  • Install package with composer composer require za-laravel/laravel-admin:"dev-master", (*3)

  • If composer can't find package, try to set "minimum-stability": "dev", (*4)

  • Now append service provider to providers array in config/app.php., (*5)

    php array( 'Illuminate\Foundation\Providers\ArtisanServiceProvider', 'Illuminate\Auth\AuthServiceProvider', ... 'ZaLaravel\LaravelAdmin\LaravelAdminServiceProvider', ), ?>, (*6)

  • Append view composer service provider to app/config.php, (*7)

    php array( 'Illuminate\Foundation\Providers\ArtisanServiceProvider', 'Illuminate\Auth\AuthServiceProvider', ... 'ZaLaravel\LaravelAdmin\LaravelAdminServiceProvider', 'ZaLaravel\LaravelAdmin\LaravelAdminViewComposerServiceProvider', ), ?>, (*8)

  • Publish assets and config file with php artisan vendor:publish, (*9)

  • You will have empty larave-admin.php config and you need to sepecifiy nav items there:, (*10)

    ```php <?php, (*11)

return [, (*12)

'nav' => [
    [
        'title' => 'Users',
        'url' => 'user' // equals to /admin/user
    ]
]

]; ```, (*13)

Usage

In your view you need extend laravel-admin::layout: @extends('laravel-admin::layout'), (*14)

And insert your content in content section:, (*15)

   ``` 
   @section('content')
     ...
   @endsection

   ```

The Versions

08/10 2016

dev-master

9999999-dev

Base admin package for Laravel 5

  Sources   Download

MIT

The Requires