Looking to hire Laravel developers? Try LaraJobs

page-marker-laravel maintained by adods

Description
PageMarker library extension for Laravel
Last update
2019/11/29 10:00 (dev-master)
License
Links
Downloads
12

Comments
comments powered by Disqus

Page Marker for Laravel

Extension from adods\page-marker for Laravel

Installation

Via Composer:

composer require adods/page-marker-laravel

or just download the file manually and put in your lib directory

Requirement

Usage Difference

init() now return Illuminate\Http\RedirectResponse when conditions are met.

private $marker;

public function __construct(
    PageMarkerLaravel $marker
) {
    $this->marker = $marker;
}
if ($redir = $this->marker->init()) {
    return $redir;
}