Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kawax/laravel-pagination-bulma
https://github.com/kawax/laravel-pagination-bulma
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kawax/laravel-pagination-bulma
- Owner: kawax
- License: mit
- Created: 2019-03-16T11:21:13.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-05-21T00:41:58.000Z (7 months ago)
- Last Synced: 2024-09-27T19:41:03.711Z (3 months ago)
- Language: Blade
- Size: 10.7 KB
- Stars: 6
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Laravel Pagination for Bulma
https://bulma.io/
## Requirements
- PHP >= 8.0
- Laravel >= 10.0> No version restrictions. It may stop working in future versions.
## Installation
```
composer require revolution/laravel-pagination-bulma
```### AppServiceProvider@boot
```php
namespace App\Providers;use Illuminate\Support\ServiceProvider;
use Illuminate\Pagination\Paginator;class AppServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*/
public function boot(): void
{
Paginator::defaultView('pagination-bulma::bulma');
Paginator::defaultSimpleView('pagination-bulma::bulma-simple');
}
}
```## Publishing Views(Optional)
```
php artisan vendor:publish --tag=pagination-bulma
````resources/views/vendor/pagination-bulma`
## LICENSE
MIT