PHPackages                             think.studio/laravel-naviga-ad - 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. [API Development](/categories/api)
4. /
5. think.studio/laravel-naviga-ad

ActiveLibrary[API Development](/categories/api)

think.studio/laravel-naviga-ad
==============================

Unofficial web integration with naviga ad api

2.1.0(2y ago)0262MITPHPPHP ^8.1

Since Mar 31Pushed 2y ago1 watchersCompare

[ Source](https://github.com/dev-think-one/laravel-naviga-ad)[ Packagist](https://packagist.org/packages/think.studio/laravel-naviga-ad)[ Docs](https://github.com/dev-think-one/laravel-naviga-ad)[ RSS](/packages/thinkstudio-laravel-naviga-ad/feed)WikiDiscussions main Synced today

READMEChangelogDependencies (7)Versions (4)Used By (2)

Laravel: [Naviga](https://www.navigaglobal.com/) API integration
================================================================

[](#laravel-naviga-api-integration)

[![Packagist License](https://camo.githubusercontent.com/f9fd4ebf3c96516495670996f8cdd3c47ce2de6a161285057189ba75f2d91efd/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f7468696e6b2e73747564696f2f6c61726176656c2d6e61766967612d61643f636f6c6f723d253233346463373166)](https://camo.githubusercontent.com/f9fd4ebf3c96516495670996f8cdd3c47ce2de6a161285057189ba75f2d91efd/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f7468696e6b2e73747564696f2f6c61726176656c2d6e61766967612d61643f636f6c6f723d253233346463373166)[![Packagist Version](https://camo.githubusercontent.com/2264bafe17db4d9eb4e0cd0e352e8f888284606ca07e0f4628c05b3731e0c714/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7468696e6b2e73747564696f2f6c61726176656c2d6e61766967612d6164)](https://packagist.org/packages/think.studio/laravel-naviga-ad)[![Total Downloads](https://camo.githubusercontent.com/932c44068fb2ab6d224668a50053dd54dbd0a54246fe6f00ec0c184e2ec6d8b8/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7468696e6b2e73747564696f2f6c61726176656c2d6e61766967612d6164)](https://packagist.org/packages/think.studio/laravel-naviga-ad)[![Build Status](https://camo.githubusercontent.com/9e7fc29cd48be18bf545987eeee2bed738fcf3aaa34d98172afb0bf451a789da/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6465762d7468696e6b2d6f6e652f6c61726176656c2d6e61766967612d61642f6261646765732f6275696c642e706e673f623d6d61696e)](https://scrutinizer-ci.com/g/dev-think-one/laravel-naviga-ad/build-status/main)[![Code Coverage](https://camo.githubusercontent.com/45622abe67bf7f6bb81b91b30812a74ea928455fd6166406cdf061ae708b8d43/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6465762d7468696e6b2d6f6e652f6c61726176656c2d6e61766967612d61642f6261646765732f636f7665726167652e706e673f623d6d61696e)](https://scrutinizer-ci.com/g/dev-think-one/laravel-naviga-ad/?branch=main)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/c164e25afe1f9b1d6b3624a3cd372ec8259f6d62d8f060c26db47ef4e6005591/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6465762d7468696e6b2d6f6e652f6c61726176656c2d6e61766967612d61642f6261646765732f7175616c6974792d73636f72652e706e673f623d6d61696e)](https://scrutinizer-ci.com/g/dev-think-one/laravel-naviga-ad/?branch=main)

Unofficial web integration with naviga [ad api](docs/API%20Quick%20Reference%20Guide.pdf).
Web reference [there](https://dev.navigahub.com/ElanWebPlatform/devdigital/swagger/ui/index)

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

[](#installation)

You can install the package via composer:

```
composer require think.studio/laravel-naviga-ad

php artisan vendor:publish --provider="NavigaAdClient\ServiceProvider" --tag="config"
```

```
NAVIGA_AD_API_USERNAME="api_user"
NAVIGA_AD_API_PASSWORD="xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
NAVIGA_AD_API_BASE_URL="https://fin.navigahub.com/XxxxxXXXxxxxxx/XXX/api"
```

Usage
-----

[](#usage)

Direct call via facade:

```
$response = NavigaAd::pendingRequest()->get("campaigns/{$id}");
if ($response->status() == 400) {
   throw new Exception('Campaign deleted');
}
$result = $response->json();
```

Paginated query

```
/** @var PaginatedResponse $response */
$response = NavigaAd::paginatedRequest('book/ordertypes', perPage: 16, currentPage: 3)->retrieve();
// or
$response = NavigaAd::paginatedRequest('book/orders', 5)->setCurrentPage(2)->retrieve(queryData: [
    'LastModDate' => '2023-07-09T07:14:14.433Z'
]);

$response->entities();
$response->currentPage();
$response->totalPages();
$response->countEntities();
$response->totalEntities();
```

Credits
-------

[](#credits)

- [![Think Studio](https://camo.githubusercontent.com/8e541bece07d503c85a126b5294865faa00e27371048772f566a0cce8c01fd3a/68747470733a2f2f7961726f736c617777772e6769746875622e696f2f696d616765732f73706f6e736f72732f7061636b616765732f6c6f676f2d7468696e6b2d73747564696f2e706e67)](https://think.studio/)

###  Health Score

27

—

LowBetter than 47% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~232 days

Total

3

Last Release

1090d ago

Major Versions

1.0.0 → 2.0.12023-03-02

PHP version history (2 changes)1.0.0PHP ^8.0

2.0.1PHP ^8.1

### Community

Maintainers

![](https://www.gravatar.com/avatar/53f93fa87d58f33d106de6bd5e2946f8a345ebfaee146360746056cb134a15a0?d=identicon)[think.studio](/maintainers/think.studio)

---

Top Contributors

[![yaroslawww](https://avatars.githubusercontent.com/u/23663794?v=4)](https://github.com/yaroslawww "yaroslawww (4 commits)")

---

Tags

naviga-adnavigaglonalnaviga

###  Code Quality

TestsPHPUnit

Static AnalysisPsalm

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/thinkstudio-laravel-naviga-ad/health.svg)

```
[![Health](https://phpackages.com/badges/thinkstudio-laravel-naviga-ad/health.svg)](https://phpackages.com/packages/thinkstudio-laravel-naviga-ad)
```

###  Alternatives

[defstudio/telegraph

A laravel facade to interact with Telegram Bots

816333.6k3](/packages/defstudio-telegraph)[simplestats-io/laravel-client

Server-side analytics for Laravel that follows the full funnel from visit to registration to payment, attributed to the channel that drove it. Revenue, MRR, churn and ad-spend profit (ROAS/CAC) per channel. GDPR compliant, ad-blocker proof.

5021.9k](/packages/simplestats-io-laravel-client)[rapidez/core

Rapidez Core

1823.5k72](/packages/rapidez-core)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
