saqib/rfpl-laravel

A RFPL packages for laravel

Installs: 14

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/saqib/rfpl-laravel

v1.2.5 2020-01-30 10:20 UTC

This package is auto-updated.

Last update: 2025-09-29 02:42:59 UTC


README

A Response First Process Later Package for Laravel

#Usage

$rfpl = new RfplLaravel\CacheService;
try {
    $rfpl->handle();
} catch (\Exception $th) {
    //throw $th;
}    

To ignore Routes jus pass an array of routes pattern

$rfpl = new RfplLaravel\CacheService([
    'test',
    'abx\*',
    '*\abc',
    'xyz\lmn'
]);
try {
    $rfpl->handle();
} catch (\Exception $th) {
    //throw $th;
}