Installation

Add the package to your Laravel application using Composer:

composer require codetech/laravel-api-logs

The service provider is registered automatically via package discovery.

Publish and run the migrations:

php artisan vendor:publish --provider="CodeTech\ApiLogs\Providers\ApiLogServiceProvider" --tag=migrations
php artisan migrate

Optionally, publish the configuration file:

php artisan vendor:publish --provider="CodeTech\ApiLogs\Providers\ApiLogServiceProvider" --tag=config

See Configuration for the available options.