2017 © Pedro Peláez
 

package adminlte

AdminLte Template for Laravel

image

ridrog/adminlte

AdminLte Template for Laravel

  • Tuesday, October 31, 2017
  • by Ridrog
  • Repository
  • 0 Watchers
  • 0 Stars
  • 1 Installations
  • HTML
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 2 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

AdminLte

for Laravel, (*1)

WIP: Made by a Noob ... don't use it, (*2)

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

This package provides a simple way to generate a closed area for admins. Route, Middleware,, (*4)

Installation

Add these two lines to the composer.json file of your laravel installation to use the dev version of this package, (*5)

"minimum-stability": "dev",
"prefer-stable" : true,

Require the package, (*6)

composer require ridrog/adminlte

Include the ServiceProvider, (*7)

to the providers array @ config/app.php, (*8)

'providers' => [
    ...
    Ridrog\AdminLte\AdminLteServiceProvider::class,
    ...
 ],

Use the view, (*9)

adminlte::dashboard

or extend the adminlte master template, (*10)

@extends('adminlte::default')

@section('content-header')


Hello World

@endsection @section('content')

Some Content here ... , (*11)

@endsection

Publish the Views, (*12)

php artisan vendor:publish --tag=adminlte-views

Customize

Publish the config
php artisan vendor:publish --tag=adminlte-config, (*13)

And take a look, most should be clear.
Switch skins, hide/display various sections
...., (*14)

Sections

'meta', 'styles' and 'scripts', (*15)

'content' and 'content-header', (*16)

Stacks

  • top-nav
  • top-nav-right
  • footer
  • sidebar-top
  • sidebar-bottom

Make a View

There is a command for creating your own view. That view will extend the default adminlte layout and it will also include all possible sections and stacks., (*17)

Options: - --basic Creates a basic view - --force Force overwriting, (*18)

php artisan make:view:adminlte path.to.nameoftheview

The Versions

31/10 2017

dev-master

9999999-dev

AdminLte Template for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires