Skip to content

Installation

Diego Smania edited this page Feb 25, 2021 · 10 revisions

Note: the next steps are valid for a fresh installation procedure, if you are updating the package, refers to the Updating section.

  1. On the root folder of your Laravel project, require the package using composer:

    composer require jeroennoten/laravel-adminlte
  2. (For Laravel 7+ only) If you want to install the authentication scaffolding, then require the laravel/ui package using composer:

    composer require laravel/ui
    php artisan ui vue --auth

    Note: it is a recommendation to read the Laravel Authentication Documentation for details about the authentication scaffolding.

  3. Finally, install the required package resources using the next command:

    php artisan adminlte:install

    You can use --force option to overwrite existing files.

    You can use --interactive option to be guided through the process and choose what you want to install.

    You can check the installation status of the package resources with the command php artisan adminlte:status