Laravel 5.6
5.6 Installation
The zip file contains all laravel files integrated with josh, however you need to perform following steps to get vendors etc.
Get Composer packages
composer install
permissions
If you are on linux/ mac you can run below command to chown it.
database credentials
open.env
and modify database details with yours
Generate Key
add tables to databaes
php artisan migrate
add admin to users table
php artisan db:seed
compile assets
If you don't have good knowledge on nodejs and npm, you can copy public folder files from codecanyon's downloaded files
Note :The above step is completely optional , if you are not comfortable with this, you can skip it and perform the below steps, still it works fine.
Make sure you have nodejs installed in your system with minimum version6.10.0
, and yarn1.5.1
you can check installed version by runningnode -v
command in terminal.
If you are having older version, please install latest version from nodejs.org
For laravel 5.6 , the minimum version of php required is 7.1.3 and
the following php extensions are rquired
PHP >= 7.1.3
OpenSSL PHP Extension
PDO PHP Extension
Mbstring PHP Extension
Tokenizer PHP Extension
XML PHP Extension
Ctype PHP Extension
JSON PHP Extension
install local packages
yarn install
move assets to public
npm run dev
Congratulations
open your website and now it should be fully working :)
Last updated