Skip to content

(easy integration of adminlte in laravel) Integrar adminlte en cualquier version de laravel es tan facil como dar un solo click, atrevete a dar el click y disfrutalo.

Notifications You must be signed in to change notification settings

rgmatute/adminlte-laravel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

easy integration AdminLTE in Laravel 5.7 or previus version

Packagist Mit License adminlte

Screenshots

Screenshot 1

Screenshot 2

Screenshot 3

Screenshot 4

Installation

   composer require rgmatute/adminlte-laravel

To register the Service Provider edit config/app.php file and add to providers array:

	Rgmatute\AdminLTELaravel\Providers\AdminLTELaravelServiceProvider::class,

Publish files with:

	php artisan vendor:publish --tag=rgmatute

OR

	php artisan vendor:publish --tag=rgmatute --force

To test the examples included it is important to copy in your preferred routes in web.php

	require __DIR__.'/adminlteExamples.php';

use

@extends('Template.adminlte')

or

@extends('Template.adminlte')

@section('main-title') 
	{{ 'General Title' }} 
	<small>Optional description</small>
@endsection

@section('main-navigation')	
	<li class="active">Module</li>
	<li class="active">Option</li>
	<li class="active">etc.....</li>
@endsection

@push('styles')
	{{-- MORE STYLES --}}
@endpush()

@section('main-content')
	
	<!-- HERE GOES YOUR CONTENT -->

@endsection()


@push('scripts')
	{{-- MORE SCRIPTS --}}
@endpush()

About

(easy integration of adminlte in laravel) Integrar adminlte en cualquier version de laravel es tan facil como dar un solo click, atrevete a dar el click y disfrutalo.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published