PHP code example of pigzzz123 / adminlte3

1. Go to this page and download the library: Download pigzzz123/adminlte3 library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

pigzzz123 / adminlte3 example snippets


'extensions' => [
    'adminlte' => [
        'theme' => [
            /*
            |--------------------------------------------------------------------------
            |Navbar Theme
            |--------------------------------------------------------------------------
            |    "bg-primary", "bg-info", "bg-success", "bg-danger"
            |    "bg-warning", "bg-white", "bg-gray-light"
            */
            
            'navbar'    => 'bg-white',
            
            /*
            |--------------------------------------------------------------------------
            |Sidebar Theme
            |--------------------------------------------------------------------------
            |    "sidebar-dark-primary", "sidebar-dark-warning", "sidebar-dark-info", "sidebar-dark-danger", "sidebar-dark-success"
            |    "sidebar-light-primary", "sidebar-light-warning", "sidebar-light-info", "sidebar-light-danger", "sidebar-light-success"
            */
            
            'sidebar'   => 'sidebar-dark-primary',
            
            /*
            |--------------------------------------------------------------------------
            |LOGO Theme
            |--------------------------------------------------------------------------
            |    "bg-primary", "bg-info", "bg-success", "bg-danger"
            |    "bg-warning", "bg-white", "bg-gray-light"
            */
            
            'logo'      => ''
        ]
    ]
]