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

AbandonedArchivedLibrary[Framework](/categories/framework)

atk4/laravel-ad
===============

Extension for Laravel to natively integrate with Agile Data (http://git.io/ad)

5121[1 PRs](https://github.com/atk4/laravel-ad/pulls)PHP

Since Apr 28Pushed 6y ago9 watchersCompare

[ Source](https://github.com/atk4/laravel-ad)[ Packagist](https://packagist.org/packages/atk4/laravel-ad)[ RSS](/packages/atk4-laravel-ad/feed)WikiDiscussions develop Synced 2mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Laravel Agile Data
==================

[](#laravel-agile-data)

*A drop-in integration for Laravel 5+ to allow use of Agile Data natively.*

[![Build Status](https://camo.githubusercontent.com/7c228823fda51efc213c15b42c29f36894cbdd10631ad3c6cbb6d37eb76fce27/68747470733a2f2f7472617669732d63692e6f72672f61746b342f6c61726176656c2d61642e706e673f6272616e63683d646576656c6f70)](https://travis-ci.org/atk4/laravel-ad)[![Code Climate](https://camo.githubusercontent.com/00b95ac11df2b5ab1ba21aa7f9d343f763007804ab52e6096de88cc7ff1b3735/68747470733a2f2f636f6465636c696d6174652e636f6d2f6769746875622f61746b342f6c61726176656c2d61642f6261646765732f6770612e737667)](https://codeclimate.com/github/atk4/laravel-ad)[![StyleCI](https://camo.githubusercontent.com/ddd52062390ce501655b35d8251e2d0ca7f1cf22fd1d8e44cc881eb1819a12d4/68747470733a2f2f7374796c6563692e696f2f7265706f732f35363434323733372f736869656c64)](https://styleci.io/repos/56442737)[![Test Coverage](https://camo.githubusercontent.com/480a97d7e9c16a3204e3031cf3c11cac83511dca152d0eb359efacc7c89420c0/68747470733a2f2f636f6465636c696d6174652e636f6d2f6769746875622f61746b342f6c61726176656c2d61642f6261646765732f636f7665726167652e737667)](https://codeclimate.com/github/atk4/laravel-ad/coverage)[![codecov](https://camo.githubusercontent.com/0eb0e1cb9ec02d30a7c81a3f9d2013ec158a319c08fdcf55f8185a1a15e9af6b/68747470733a2f2f636f6465636f762e696f2f67682f61746b342f6c61726176656c2d61642f6272616e63682f646576656c6f702f67726170682f62616467652e737667)](https://codecov.io/gh/atk4/laravel-ad)[![Version](https://camo.githubusercontent.com/431d8d92aa8091a2b9061fceffaea9fffa6b309818782530d24c0cc4fd06b712/68747470733a2f2f62616467652e667572792e696f2f67682f61746b342532466c61726176656c2d61642e737667)](https://packagist.org/packages/atk4/laravel-ad)

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

[](#installation)

First install via composer

```
composer require "atk4/laravel-ad"
```

Next, add the ServiceProvider to the providers array in `config/app.php`

```
at4k\LaravelAD\AgileDataServiceProvider::class
```

Finally, publish the configuration file by running the command:

```
php artisan vendor:publish --tag="agiledata"
```

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

[](#configuration)

Without any additional configuration LaravelAD will use the default connection specified in your `config/database.php` configuration.

To use a different connection simply specify the connection name in `config/agiledata.php`.

Usage
-----

[](#usage)

There are two ways to get an instance of `atk4\data\Persistence` which follow the normal behavior of [resolving](https://laravel.com/docs/5.1/container#resolving) a dependency in Laravel.

Through a type-hint in any class that is resolved through the service container:

```
use Illuminate\Routing\Controller;

class MyController extends Controller
{
    public function __construct(atk4\data\Persistence $db)
    {

    }
}
```

or by resolving directly through the service container

```
$db = $this->app->make('agiledata'); // using the alias
$db = $this->app->make(atk4\data\Persistence::class); // using the class name
```

Roadmap
-------

[](#roadmap)

- DI integration
- Facade for retrieving different `Persistence` objects
- Authentication UserProvider
- Migrations using Console
- Support route validations that use DB
- Support Laravel Collections?

###  Health Score

21

—

LowBetter than 19% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity34

Early-stage or recently created project

 Bus Factor1

Top contributor holds 68% 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/426ad318d07e7685454f7e449a9d0c9f005b83aef0777558d97d854ff9c28a5a?d=identicon)[romaninsh](/maintainers/romaninsh)

---

Top Contributors

[![romaninsh](https://avatars.githubusercontent.com/u/453929?v=4)](https://github.com/romaninsh "romaninsh (17 commits)")[![FoxxMD](https://avatars.githubusercontent.com/u/4663766?v=4)](https://github.com/FoxxMD "FoxxMD (6 commits)")[![DarkSide666](https://avatars.githubusercontent.com/u/1969119?v=4)](https://github.com/DarkSide666 "DarkSide666 (2 commits)")

---

Tags

agileatk4laravel-adphp

### Embed Badge

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

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

###  Alternatives

[laravel/telescope

An elegant debug assistant for the Laravel framework.

5.2k67.8M192](/packages/laravel-telescope)[spiral/roadrunner

RoadRunner: High-performance PHP application server and process manager written in Go and powered with plugins

8.4k12.2M84](/packages/spiral-roadrunner)[nolimits4web/swiper

Most modern mobile touch slider and framework with hardware accelerated transitions

41.8k177.2k1](/packages/nolimits4web-swiper)[laravel/dusk

Laravel Dusk provides simple end-to-end testing and browser automation.

1.9k36.7M259](/packages/laravel-dusk)[laravel/prompts

Add beautiful and user-friendly forms to your command-line applications.

708181.8M596](/packages/laravel-prompts)[cakephp/chronos

A simple API extension for DateTime.

1.4k47.7M121](/packages/cakephp-chronos)

PHPackages © 2026

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