PHP code example of lupka / laravel-api-logger
1. Go to this page and download the library: Download lupka/laravel-api-logger 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/ */
lupka / laravel-api-logger example snippets
protected $middlewareGroups = [
...
'api' => [
...
'api-logger',
],
];
Route::post('/test', 'TestController@test')->middleware('api-logger');
Lupka\ApiLogger\Models\ApiLog::all();
protected function schedule(Schedule $schedule)
{
...
$schedule->command('api-logger:clear')->daily();
}
bash
php artisan migrate