fomvasss/laravel-lte3

LTE3 Control Panel for Laravel Framework
2,683 7
Install
composer require fomvasss/laravel-lte3
Latest Version:1.114.0
PHP:^8.0
License:MIT
Last Updated:Sep 16, 2026
Links: GitHub  ·  Packagist
Maintainer: fomvasss

Admin LTE3 Control Panel for Laravel Framework

License Build Status Latest Stable Version Total Downloads

Create easily and quickly a convenient and functional dashboard for web-site, blogs, shops, crm, apps with the help of a template and a powerful system for building fields and forms. To learn all about it, head over to the extensive documentation.

screenshot


Installation

Run:

composer require fomvasss/laravel-lte3

composer require almasaeed2010/adminlte --dev

php artisan vendor:publish --tag=lte3-config

php artisan lte3:install

That's all. You can usage LTE3 in your project :)

All examples of fields and components can be viewed: http://site.test/lte3/exsmples (.../examples/components.vlade.php)

Configuration

Configuration file: config/lte3.php

  • view.compact (bool, default true) - compact size for main-header and sidebar (adds text-sm to the header/brand-link and nav-compact to the sidebar menu)

For correct work navigation in dashboard, apply middleware. Add this to App\Http\Kernel.php:

$middlewareGroups = [
  'web' => [
    //...
    \Fomvasss\Lte3\Http\Middleware\LteRequestOptions::class,
  ],
];

Publishing (optional)

This package require dev almasaeed2010/adminlte package. If you chose the option to create a symbolic link (when installing) to adminlte resources, then the almasaeed2010/adminlte dependency must be included in your composer:

composer require almasaeed2010/adminlte

If you publish all almasaeed2010/adminlte resources to the public, then the unused packages (public/vendor/adminlte/plugins/...) can be manually cleaned so as not to take up disk space.

Of course, you can published partial for customize:

  • views: lte3-view-components, lte3-view-examples, lte3-view-auth, lte3-view-parts, lte3-view-layouts

  • other: lte-config, lte-assets, lte-lang

For Example:

php artisan vendor:publish --tag=lte3-view-components

Structure

  • config/lte3.php - package config
  • public/vendor/adminlte - original AdminLte assets (css, js, plugins) ColorlibHQ/AdminLTE3
  • public/vendor/lte3 - custom assets (you can change this)
  • resources/views/vendor/lte3 - optional publishing
    • auth
    • layouts
    • parts
    • components
    • examples

Usage & Development

See examples.blade.php

Recommended

Credits

Related Packages

laravilt/panel

A powerful admin panel framework for Laravel with Vue.js (Inertia.js) frontend....

502 1
ilhamsyabani/laravel-volt-starter

A modern, MIT-licensed Laravel starter kit using Livewire Volt, Laravel Folio, a...

7 0
idealogica/lavanda

Administrator control panel for Laravel application.

239 6
vortexpanel/vortexpanel

VortexPanel — Futuristic, ultra-fast admin panel for Laravel 10+.

3 0
laravelrus/sleepingowl

Administrative interface builder for Laravel.

224,085 805