vtalbot / pjax
PJAX for Laravel 4
Installs: 11 538
Dependents: 0
Suggesters: 0
Security: 0
Stars: 40
Watchers: 3
Forks: 32
Open Issues: 1
Requires
- php: >=5.3.0
- illuminate/support: 4.x
This package is auto-updated.
Last update: 2024-11-23 00:10:40 UTC
README
Enable the use of PJAX in Laravel 4.
If using Laravel 5, please see jacobbennett/pjax
Installation
Add vtalbot/pjax
to require
section in your composer.json
composer require vtalbot/pjax
Add 'VTalbot\Pjax\PjaxServiceProvider',
to providers
in your app/config/app.php
How to use
This service provider will check, before output the http response, for the X-PJAX
's
header in the request. If found, it will crawl the response to return the requested
element defined by X-PJAX-Container
's header.
Works great with jquery.pjax.js.
Example project: https://github.com/vtalbot/laravel-pjax-example
Contribution
I'm open to any idea of features to add to it.