PHPackages                             vinbolt/laravel - 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. [Framework](/categories/framework)
4. /
5. vinbolt/laravel

ActiveLibrary[Framework](/categories/framework)

vinbolt/laravel
===============

Laravel integration for the VINbolt PHP SDK

v0.2.1(1mo ago)01MITPHPPHP ^8.2

Since May 6Pushed 1mo agoCompare

[ Source](https://github.com/VINbolt/laravel)[ Packagist](https://packagist.org/packages/vinbolt/laravel)[ RSS](/packages/vinbolt-laravel/feed)WikiDiscussions main Synced 1w ago

READMEChangelogDependencies (4)Versions (4)Used By (0)

vinbolt/laravel
===============

[](#vinboltlaravel)

Laravel integration for the [VINbolt PHP SDK](../php/README.md).

Provides a service provider, facade, and config file so you can call the VINbolt headless API directly from Laravel apps.

Install
-------

[](#install)

```
composer require vinbolt/laravel
```

The service provider auto-registers via Laravel's package discovery.

Configure
---------

[](#configure)

Set your API key in `.env`:

```
VINBOLT_API_KEY=pk_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
VINBOLT_BASE_URL=https://vinbolt.com/api/v1
```

(Optional) publish the config file to customize:

```
php artisan vendor:publish --tag=vinbolt-config
```

Usage
-----

[](#usage)

### Facade

[](#facade)

```
use Vinbolt\Laravel\Facades\Vinbolt;

$home    = Vinbolt::pages->get('home');
$header  = Vinbolt::site->header();
$brand   = Vinbolt::brand->get();
$cars    = Vinbolt::vehicles->list(['make' => 'Honda']);

Vinbolt::leads->create([
    'email'       => 'shopper@example.com',
    'name'        => 'Jane Doe',
    'vehicle_vin' => '1HGCM82633A123456',
]);
```

### Dependency injection

[](#dependency-injection)

```
use Vinbolt\Sdk\VinboltClient;

class HomeController
{
    public function __construct(private VinboltClient $vinbolt) {}

    public function show()
    {
        return view('home', [
            'page'   => $this->vinbolt->pages->get('home'),
            'header' => $this->vinbolt->site->header(),
        ]);
    }
}
```

Resources
---------

[](#resources)

See the [PHP SDK README](../php/README.md) for the full resource list — this package is a pure Laravel wrapper, all methods come from `vinbolt/sdk`.

###  Health Score

36

—

LowBetter than 79% of packages

Maintenance93

Actively maintained with recent releases

Popularity2

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity38

Early-stage or recently created project

 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 ~0 days

Total

3

Last Release

34d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/bed443220c2b8506f985e92e807fc05e77037e40fd591513052e503c9527b7a6?d=identicon)[tpharaoh](/maintainers/tpharaoh)

---

Top Contributors

[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (3 commits)")

### Embed Badge

![Health badge](/badges/vinbolt-laravel/health.svg)

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

###  Alternatives

[laravel/horizon

Dashboard and code-driven configuration for Laravel queues.

4.1k91.3M277](/packages/laravel-horizon)[laravel/sail

Docker files for running a basic Laravel application.

1.9k199.2M1.2k](/packages/laravel-sail)[laravel/ai

The official AI SDK for Laravel.

9782.1M153](/packages/laravel-ai)[laravel/socialite

Laravel wrapper around OAuth 1 &amp; OAuth 2 libraries.

5.7k104.3M822](/packages/laravel-socialite)[laravel/mcp

Rapidly build MCP servers for your Laravel applications.

76318.2M110](/packages/laravel-mcp)[psalm/plugin-laravel

Psalm plugin for Laravel

3325.1M337](/packages/psalm-plugin-laravel)

PHPackages © 2026

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