alfred-nutile-inc/route-tracking

Route Tracking
5,793 4
Install
composer require alfred-nutile-inc/route-tracking
PHP:>=5.5.0
Last Updated:Dec 17, 2015
Links: GitHub  ·  Packagist
Maintainer: alnutile

Simple Way To Track Route Usage

report

See https://alfrednutile.info/posts/169 for more info.

Installation

Run composer require alfred-nutile-inc/route-tracking

Setup the Provider config/app.php

    'providers' => [
      AlfredNutileInc\RouteTracking\RouteTrackingProvider::class,

Setup the Middleware adding this to your app/Http/Kernel.php

    protected $middleware = [
        \Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode::class,
        \App\Http\Middleware\EncryptCookies::class,
        \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
        \Illuminate\Session\Middleware\StartSession::class,
        \AlfredNutileInc\RouteTracking\RouteUsageTracker::class,
    ];

Make sure to run Migrations

php artisan vendor:publish

php artisan migrate

Related Packages

gabrieloliverio/laravel5-generators

Database metadata-based generators for Laravel 5

1
erirk/paypalpayment

laravel-paypalpayment is simple package help you process direct credit card paym...

0
doctrine/dbal

Powerful PHP database abstraction layer (DBAL) with many features for database s...

631,580,251 9,707
laravel/framework

The Laravel Framework.

580,311,802 34,925
laravel/tinker

Powerful REPL for the Laravel framework.

489,754,436 7,444