Package Data | |
---|---|
Maintainer Username: | milose |
Maintainer Contact: | milos@deva.co (Milos Sakovic) |
Package Create Date: | 2016-10-16 |
Package Last Update: | 2018-08-16 |
Home Page: | |
Language: | HTML |
License: | MIT |
Last Refreshed: | 2024-11-26 15:20:16 |
Package Statistics | |
---|---|
Total Downloads: | 48 |
Monthly Downloads: | 2 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 0 |
UOverride Laravel Auth/Pagination views using Zurb Foundation instead of Twitter Bootstrap.
To install this package run
composer require milose/laravel-foundation
If you are using Laravel version >= 5.5
you can skip the next step.
Add the service provider to your config/app.php
file by finding providers
key, and adding this to the end of the list:
Milose\LaravelFoundation\LaravelFoundationServiceProvider::class,
In order for Laravel to use the custom views for Authentication, we must import this package traits to the appropriate controllers. These traits override the original methods with updated view names.
Open all of the files in app/Http/Controllers/Auth
, and before every trait add \Milose\LaravelFoundation\Auth\
to override the default view. So, for example, Login controller trait inside the class sould look like:
use \Milose\LaravelFoundation\Auth\AuthenticatesUsers;
Instead of:
use AuthenticatesUsers;
Do this for all files.
In your blade files you can paginate
as usual, by adding:
{{ $users->links('lf::pagination.default') }}
Or if you're using simplePaginate
then add:
{{ $users->links('lf::pagination.simple') }}
If you want to change how the views look, you need to publish the them to your resources/views/vendor
directory by running
php artisan vendor:publish --tag=lf
After this, in resources/views/vendor/laravelFoundation
you will find Blade templates for both authentication and pagination.
Import npm package and copy settings and utils so you can customize Foundation:
yarn add foundation-sites motion-ui --dev
mkdir resources/assets/sass/foundation/
cp node_modules/foundation-sites/scss/settings/_settings.scss resources/assets/sass/foundation/
cp -R node_modules/foundation-sites/scss/util/ resources/assets/sass/foundation/util/
In your resources/assets/sass/app.scss
file remove:
// Bootstrap
@import "node_modules/bootstrap-sass/assets/stylesheets/bootstrap";
And add:
// Foundation
@import 'node_modules/foundation-sites/scss/foundation';
@import "foundation/settings";
@include foundation-everything; //or @include only the components you need
// Motion-Ui
@import 'node_modules/motion-ui/motion-ui'
In your resources/assets/js/bootstrap.js
file remove:
require('bootstrap-sass');
And add:
require('motion-ui')
require('what-input')
require('foundation-sites') // or individual components
$(document).ready(function() {
$(document).foundation()
})
Then run gulp
to recompile the assets.
##TODO