1. Go to this page and download the library: Download shallowman/laralog library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
return [
'except' => [
// The fields filled in the blow array will be excluded to print in the log which in the http request body carried items
// perfect match
'fields' => [
'password',
'password_information',
'password_confirm',
],
// The uris filled in the blow array will be excluded to print http response body
// Using full fuzzy matching
'uris' => [
'/welcome',
],
],
'log_clipped_length' => env('LARALOG_CLIPPED_LENGTH', \Shallowman\Laralog\Http\Middleware\CaptureRequestLifecycle::POSITIVE_INFINITY),
];