Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mairorodrigues/laravel-adminlte

Laravel 8 with AdminLTE
https://github.com/mairorodrigues/laravel-adminlte

access-control-list acl adminlte adminlte-dashboard-template adminlte-template adminlte-theme dashboard laracasts laravel laravel-admin-panel laravel-admin-theme laravel-adminlte laravel-application laravel-dashboard laravel-framework laravel8 pagination

Last synced: 1 day ago
JSON representation

Laravel 8 with AdminLTE

Awesome Lists containing this project

README

        

# AdminLTE template Laravel 8 package

Start a new Laravel 8 project with the AdminLTE template installed.

# Installation

1) Create database.
2) Clone repository `git clone https://github.com/mairorodrigues/Laravel-AdminLTE.git`
3) Copy `.env.example` to `.env`
4) Set valid database credentials of env variables `DB_DATABASE`, `DB_USERNAME`, and `DB_PASSWORD`
5) Run `composer install`
6) Create symbolic link for AdminLTE (Run the commands as an administrator)

- Windows example:

```php
mklink /d "C:\xampp\htdocs\laravel-adminlte\public\assets\adminlte" "C:\xampp\htdocs\laravel-adminlte\vendor\almasaeed2010\adminlte"
```

- Linux example:

```php
ln -s public_html/laravel-adminlte/vendor/almasaeed2010/adminlte public_html/laravel-adminlte/public/assets/adminlte
```
7) Run
```php
php artisan migrate
```
```php
php artisan db:seed
```
```php
php artisan key:generate
```
```php
php artisan serve
```
8) Access the application. Example: `http://127.0.0.1:8000`
9) Login: `[email protected]` Password: `root`