PHPackages                             odairdelahoz/adminlte4-helper - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Templating &amp; Views](/categories/templating)
4. /
5. odairdelahoz/adminlte4-helper

ActiveLibrary[Templating &amp; Views](/categories/templating)

odairdelahoz/adminlte4-helper
=============================

A PHP-8.2 library designed to simplify the generation of AdminLTE 4 HTML components, widgets and layouts.

113PHP

Since Jan 22Pushed 3mo agoCompare

[ Source](https://github.com/odairdelahozgh/AdminLTE4Helper)[ Packagist](https://packagist.org/packages/odairdelahoz/adminlte4-helper)[ RSS](/packages/odairdelahoz-adminlte4-helper/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

AdminLTE 4 PHP Helper Library
=============================

[](#adminlte-4-php-helper-library)

A PHP-8.2 library designed to simplify the generation of AdminLTE 4 HTML components, widgets and layouts.

Description
-----------

[](#description)

This library provides a set of PHP classes that act as helpers for rendering various UI components from the AdminLTE 4 dashboard template. It aims to streamline the process of building AdminLTE-powered interfaces in PHP applications by offering an object-oriented approach to component creation.

Installation
------------

[](#installation)

This library can be installed via Composer. First, ensure you have Composer installed.

1. **Add the repository to your `composer.json` (if not publishing to Packagist):**

    If you are using this library directly from its source or before it's officially on Packagist, you might need to add a repository entry to your project's `composer.json`:

    ```
    {
        "repositories": [
            {
                "type": "path",
                "url": "./path/to/AdminLTE4Helper" // Adjust this path to where you cloned/placed the library
            }
        ],
        "require": {
            "odairdelahoz/adminlte4-helper": "*"
        }
    }
    ```
2. **Require the package:**

    ```
    composer require odairdelahoz/adminlte4-helper
    ```

Usage
-----

[](#usage)

After installing via Composer, you can use the components by including Composer's autoloader:

```
