eilander/requestlogger

Laravel 5 request logger package.

v1.0.4 2016-05-10 10:45 UTC

This package is auto-updated.

Last update: 2024-03-21 18:18:58 UTC


README

Log all request and responses

Table of contents

[TOC]

Usage

Step 1: Add the Service Provider

In your config/app.php add Eilander\RequestLogger\Providers\RequestLoggerServiceProvider:class to the end of the providers array:

<?php
'providers' => [
    ...
    Eilander\RequestLogger\Providers\RequestLoggerServiceProvider::class,
],