# Laravel 8

## Laravel 8.x Installation

The zip file contains all laravel files integrated with Admire, however you need to perform following steps to get vendors etc.

### Minimum Requirements

For laravel 8.x , the minimum version of php required is `7.3` and

the following php extensions are required

* PHP >= 7.3
* OpenSSL PHP Extension
* PDO PHP Extension
* Mbstring PHP Extension
* Tokenizer PHP Extension
* XML PHP Extension
* Ctype PHP Extension
* JSON PHP Extension

### Get Composer packages

`composer install`

### permissions

```
chmod -R 775 storage

chmod 775 bootstrap/cache
```

If you are on linux/ mac you can run below command to chown it.

```
chown -R www-data /var/www
```

### compile assets

> If you don't have good knowledge on nodejs and npm, you can skip this step however this step is recommonded if you want to modify the template as per your needs.

Make sure you have [nodejs](https://nodejs.org) installed in your system with minimum version `8.9.x`,

you can check installed version by running `node -v` command in terminal.

If you are having older version, please install latest version from [nodejs.org](http://nodejs.org/)

&#x20;**Install Required global packages**&#x20;

`npm install -g npm bower`

&#x20;**Install local packages**&#x20;

`npm install`

&#x20;**Get bower components**&#x20;

`bower install`

&#x20;**Note:** If bower gives warning that you are running as administrator, please run the command `bower install --allow-root`

&#x20;**move assets to desired locations**&#x20;

`npm run dev`

## Congratulations

open your website and it should be fully working now :)
