Laravel 7
Installation instructions for Laravel 7.x
Laravel 7.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 7 , the minimum version of php required is 7.2
and
the following php extensions are required
PHP >= 7.2
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
If you are on linux/ mac you can run below command to chown it.
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 installed in your system with minimum version 8.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
They introduced a new npm package for webpack called mix
you can read more about it here
Install Required global packages
npm install -g npm bower yarn
Install local packages
npminstall
Get bower components
bower install
Note: If bower gives warning that you are running as administrator, please run the command bower install --allow-root
move assets to desired locations
npm run dev
Congratulations
open your website and it should be fully working now :)
Last updated