davide-casiraghi / laravel-columns
A Laravel library to generate responsive columns with multi language contents.
Installs: 1
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Language:HTML
Requires
- php: ^7.1
- astrotomic/laravel-translatable: ^11.1
- davide-casiraghi/laravel-form-partials: ^1.0
- illuminate/support: 5.8.* || ^6.0
- intervention/image: ^2.4
- mcamara/laravel-localization: ^1.3
- nesbot/carbon: ^2.19
Requires (Dev)
- orchestra/testbench: 3.8.*
- phpunit/phpunit: ^7.0
README
A Laravel library to generate responsive columns with multi language contents.
The library replace all the occurances of this snippet
{# column_group column_group_id=[1] #}
With the some HTML code of the relative column group. This code uses bootstrap 4.
Installation
You can install the package via composer:
composer require davide-casiraghi/laravel-columns
Publish all the vendor files
php artisan vendor:publish --force
Run the database migrations
php artisan migrate
Install Press.css npm package for the buttons style
npm install press-css
https://github.com/codyogden/press-css
Import the scss files
Add this lines to your resources/sass/app.scss file:
@import "~press-css/css/press.css";
@import 'vendor/laravel-columns/columns';
and then run in console:
npm run dev
Usage
Authorization
To work the package aspect that in your user model and table you have a field called group that can have this possible values:
- null: Registered user
- 1: Super Admin
- 2: Admin
Just the users that have Admin and Super admin privileges can access to the routes that allow to create, edit and delete the blogs, categories and posts. Otherwise you get redirected to the homepage.
Access to the package
After the package is published this new routes will be available:
- /columnGroups
- /columns
Accessing to this routes you can manage new column groups and columns.
Replace the snippet occurrances
Then to replace all the occurrance of the column group snippets:
use DavideCasiraghi\LaravelColumns\Facades\LaravelColumns; $text = LaravelColumns::replace_column_group_snippets_with_template($text);
Testing
./vendor/bin/phpunit --coverage-html=html
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email davide.casiraghi@gmail.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.
Laravel Package Boilerplate
This package was generated using the Laravel Package Boilerplate.