milose / laravel-foundation
Override Laravel Auth/Pagination views using Zurb Foundation instead of Twitter Bootstrap.
Installs: 48
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Language:HTML
Type:laravel-plugin
Requires
- php: ^5.6|^7.0
This package is not auto-updated.
Last update: 2024-11-23 20:48:09 UTC
README
UOverride Laravel Auth/Pagination views using Zurb Foundation instead of Twitter Bootstrap.
1. Installation
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,
2. Using the views
Auth scafolding
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.
Pagination
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') }}
3. Customizing the views
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.
4. Adding Zurb Foundation to your project
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/
SCSS
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'
JavaScript
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
- Test