├── README.md ├── composer.json ├── config.php ├── lang └── en │ └── pagination.php ├── src ├── LinksTrait.php ├── Presenter.php ├── PreviousNextTrait.php └── ServiceProvider.php └── views ├── bootstrap.blade.php ├── foundation.blade.php ├── materialize.blade.php └── uikit.blade.php /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StydeNet/blade-pagination/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StydeNet/blade-pagination/HEAD/composer.json -------------------------------------------------------------------------------- /config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StydeNet/blade-pagination/HEAD/config.php -------------------------------------------------------------------------------- /lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StydeNet/blade-pagination/HEAD/lang/en/pagination.php -------------------------------------------------------------------------------- /src/LinksTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StydeNet/blade-pagination/HEAD/src/LinksTrait.php -------------------------------------------------------------------------------- /src/Presenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StydeNet/blade-pagination/HEAD/src/Presenter.php -------------------------------------------------------------------------------- /src/PreviousNextTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StydeNet/blade-pagination/HEAD/src/PreviousNextTrait.php -------------------------------------------------------------------------------- /src/ServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StydeNet/blade-pagination/HEAD/src/ServiceProvider.php -------------------------------------------------------------------------------- /views/bootstrap.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StydeNet/blade-pagination/HEAD/views/bootstrap.blade.php -------------------------------------------------------------------------------- /views/foundation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StydeNet/blade-pagination/HEAD/views/foundation.blade.php -------------------------------------------------------------------------------- /views/materialize.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StydeNet/blade-pagination/HEAD/views/materialize.blade.php -------------------------------------------------------------------------------- /views/uikit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StydeNet/blade-pagination/HEAD/views/uikit.blade.php --------------------------------------------------------------------------------