PHPackages                             asifmuztaba1/laravel-seer - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Logging &amp; Monitoring](/categories/logging)
4. /
5. asifmuztaba1/laravel-seer

ActiveLibrary[Logging &amp; Monitoring](/categories/logging)

asifmuztaba1/laravel-seer
=========================

This is a package to monitor external api calls

v0.1(2y ago)05MITPHP

Since Aug 21Pushed 2y ago1 watchersCompare

[ Source](https://github.com/asifmuztaba1/laravel-seer)[ Packagist](https://packagist.org/packages/asifmuztaba1/laravel-seer)[ RSS](/packages/asifmuztaba1-laravel-seer/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (2)Used By (0)

Laravel Seer
============

[](#laravel-seer)

Laravel Seer is a package that allows you to automatically log third-party API calls made from your Laravel application.

Installation
------------

[](#installation)

You can install this package via Composer by running the following command:

```
composer require asifmuztaba1/laravel-seer
```

Usage
-----

[](#usage)

##### Register the Service Provider:

[](#register-the-service-provider)

In your Laravel application, open the config/app.php configuration file and add the ApiLoggerServiceProvider to the providers array:

```
'providers' => [
Asifmuztaba1\LaravelSeer\ApiLoggerServiceProvider::class,
],
```

##### Define Routes to Use the Middleware:

[](#define-routes-to-use-the-middleware)

Open the routes/api.php file in the root directory of your Laravel application and apply the middleware to the specific routes or route groups where you want to monitor third-party API calls:

```
