Spark Installation
you can check installed version by running
node -v
command in terminal.For laravel 5.4 , the minimum version of php required is
5.6.4
andthe 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 called
mix
install local packages
yarn install
move assets to public
npm run dev
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
After completing the installation of laravel spark, follow the below steps to apply the Clear skin
- 1.Remove node modules by running the following commands in your project root folder
rm -rf node_modules
- 2.Extract the files from the provided zip file.
- 3.copy all the files into your spark installation folder/directory.
- 4.Run
yarn install
- 5.Run
npm run dev
ornpm run production
ornpm run watch
as per your requirement. - 6.once, all the above steps are performed you will get a new look for your default spark website.
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 modified 2yr ago