PHPackages                             weboptic/podfather-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. [API Development](/categories/api)
4. /
5. weboptic/podfather-laravel

ActiveLibrary[API Development](/categories/api)

weboptic/podfather-laravel
==========================

A Laravel wrapper for the Podfather API

1.0.2(2mo ago)04MITPHPPHP ^8.2|^8.3

Since Mar 19Pushed 2mo agoCompare

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

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

Podfather API Wrapper for Laravel
=================================

[](#podfather-api-wrapper-for-laravel)

A clean, fluent, and strictly-typed Laravel wrapper for the Podfather API (v1.3.0).

Built for modern PHP 8.3+ and Laravel 10/11+, this package takes the heavy lifting out of connecting your application to the Podfather system.

Requirements
------------

[](#requirements)

- PHP 8.3 or higher
- Laravel 10.0 or 11.0+

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

[](#installation)

You can install the package via composer:

```
composer require your-vendor/podfather-laravel
```

Publish the configuration file using:

```
php artisan vendor:publish --provider="Podfather\PodfatherServiceProvider" --tag="config"
```

Configuration
-------------

[](#configuration)

Add your Podfather API credentials to your application's `.env` file. You can request an API key from your Podfather account manager.

```
PODFATHER_API_KEY="your_api_key_here"
PODFATHER_BASE_URL="https://external-api.aws.thepodfather.com/v1"
```

Usage
-----

[](#usage)

This package provides a highly readable Facade (`Podfather`) that dynamically routes to the various API resources.

All HTTP methods return a strictly-typed `array` containing the JSON response from Podfather. If the API returns an HTTP error (404, 500, etc.), an `Illuminate\Http\Client\RequestException` will be thrown.

### Basic Examples

[](#basic-examples)

```
use Podfather\Facades\Podfather;

// Get Account Info
$account = Podfather::account()->get();

// Fetch paginated jobs
$jobs = Podfather::jobs()->get(['page' => 1]);

// Find a specific job by ID
$singleJob = Podfather::jobs()->find(12345);

// Create a new Vehicle
$newVehicle = Podfather::vehicles()->create([
    "vehicleRegistration" => "BD51 SMR",
    "active" => true,
    "depot" => 123
]);

// Delete a driver
Podfather::drivers()->delete(456);
```

### Available Resources

[](#available-resources)

The following resources are mapped and available as chainable methods on the Facade:

- `Podfather::account()`
- `Podfather::customers()`
- `Podfather::depots()`
- `Podfather::drivers()`
- `Podfather::jobs()`
- `Podfather::pods()`
    - Additional methods: `->pdf($podId)`, `->images($podId)`, `->signatures($podId)`
- `Podfather::runs()`
    - Additional methods: `->release($runId)`
- `Podfather::sites()`
- `Podfather::templates()`
- `Podfather::vehicles()`

Testing
-------

[](#testing)

This package is fully tested using [Pest PHP](https://pestphp.com/) and [Orchestra Testbench](https://packages.tools/testbench.html).

To run the test suite:

```
composer test
# or
./vendor/bin/pest
```

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE) for more information.

###  Health Score

38

—

LowBetter than 83% of packages

Maintenance83

Actively maintained with recent releases

Popularity3

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity51

Maturing project, gaining track record

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

Total

3

Last Release

87d ago

PHP version history (2 changes)1.0.0PHP ^8.3

1.0.1PHP ^8.2|^8.3

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/86786118?v=4)[Web Optic](/maintainers/weboptic)[@weboptic](https://github.com/weboptic)

---

Top Contributors

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

###  Code Quality

TestsPest

### Embed Badge

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

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

###  Alternatives

[psalm/plugin-laravel

Psalm plugin for Laravel

3345.1M337](/packages/psalm-plugin-laravel)[defstudio/telegraph

A laravel facade to interact with Telegram Bots

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

Analytics for Laravel. Track visitors, registrations, and payments. Discover which channels actually drive revenue, not just traffic. Server-side, GDPR compliant, ad-blocker proof.

5019.3k](/packages/simplestats-io-laravel-client)[jasara/php-amzn-selling-partner-api

A fluent interface for Amazon's Selling Partner API in PHP

1348.1k1](/packages/jasara-php-amzn-selling-partner-api)

PHPackages © 2026

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