Spark Installation
Make sure you have nodejs installed in your system with minimum version6.10.0
,
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.4 , the minimum version of php required is 5.6.4
and
the following php extensions are rquired
PHP >= 5.6.4
OpenSSL PHP Extension
PDO PHP Extension
Mbstring PHP Extension
Tokenizer PHP Extension
XML PHP Extension
from 5.4 onwards, Laravel team decided to move to webpack from gulp
so assets compilation differs a bit.
They introduced a new npm package for webpack calledmix
you can read more about it here
install local packages
yarn install
move assets to public
npm run dev
1) Installation of spark :
Initially, you need to Install the Laravel Spark, For the installation of Laravel spark, Please follow the official guide, the link for which is provided below
https://spark.laravel.com/docs/4.0/installation.
2) Applying the Clear skin:
After completing the installation of laravel spark, follow the below steps to apply the Clear skin
Remove node modules by running the following commands in your project root folder
rm -rf node_modules
Extract the files from the provided zip file.
copy all the files into your spark installation folder/directory.
Run
yarn install
Run
npm run dev
ornpm run production
ornpm run watch
as per your requirement.once, all the above steps are performed you will get a new look for your default spark website.
Note:
Eventhough you can run npm install
we suggest you to run yarn install
since the package contains yarn.lock
file which lets you get the exact version of packages that we have used.
currently, we are providing support for spark version v4.0.8
Last updated