Introduction
Zurb Foundation 6 included with Laravel 5.5 (boilerplate). Made for artisans who love Foundation 6 just as much as we do. We made a few changes to the default installation of Laravel 5.5, and got rid of default Bootstrap that comes with it.
- Removed all Bootstrap code
- Remove all Vue code using php artisan preset none
command
- Changed the default welcome.blade.php
look (to show proof that foundation is working), (*1)
Versions
- Laravel 5.5+
- Zurb Foundation 6.4+
Install
First, create a new project, (*2)
composer create-project ompmega/laravel-fdn <project_name>
..or.., (*3)
git clone https://github.com/ompmega/laravel-fdn.git <project_name>
Go inside the newly created project, (*4)
cd <project_name>
Install required node modules (includes foundation-sites), (*5)
npm install
Run Laravel Mix to make sure everything runs smoothly, (*6)
npm run dev
And you're done! 🎉, (*7)
Configuration
Unlike the new way to install a laravel project using laravel new <project_name>
, you'll have to manually configure this Laravel installation., (*8)
First, install composer using:, (*9)
composer install
Then, create the new .env file, (*10)
cp .env.example .env
Finally, generate a new app key using:, (*11)
php artisan key:generate
That's it! Get out there and make good shit :), (*12)
License
Licensed under the MIT license, (*13)