PHPackages                             zoilomora/laravel-msaccess - 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. [Database &amp; ORM](/categories/database)
4. /
5. zoilomora/laravel-msaccess

AbandonedArchivedLibrary[Database &amp; ORM](/categories/database)

zoilomora/laravel-msaccess
==========================

This package helps you to manage Microsoft Access DB by ODBC Connection with the integrated Laravel ORM.

1.0.0-beta(8y ago)316.2k—0%22[3 issues](https://github.com/zoilomora/laravel-msaccess/issues)MITPHP

Since Aug 3Pushed 5y ago1 watchersCompare

[ Source](https://github.com/zoilomora/laravel-msaccess)[ Packagist](https://packagist.org/packages/zoilomora/laravel-msaccess)[ RSS](/packages/zoilomora-laravel-msaccess/feed)WikiDiscussions master Synced 3d ago

READMEChangelog (1)Dependencies (3)Versions (2)Used By (0)

This repository is no longer maintained.
========================================

[](#this-repository-is-no-longer-maintained)

It is recommended to visit the updated repository  that is being maintained and is not limited to the Laravel framework.
=============================================================================================================================================================================

[](#it-is-recommended-to-visit-the-updated-repository-httpsgithubcomzoilomoradoctrine-dbal-msaccess-that-is-being-maintained-and-is-not-limited-to-the-laravel-framework)

Laravel ORM for Microsoft Access DB
===================================

[](#laravel-orm-for-microsoft-access-db)

[![Latest Stable Version](https://camo.githubusercontent.com/adc5d4f91d8279bbb8e7da51ac760ab7ba1aa734d80bebaaab1bc3242719ef4a/68747470733a2f2f706f7365722e707567782e6f72672f7a6f696c6f6d6f72612f6c61726176656c2d6d736163636573732f762f737461626c65)](https://packagist.org/packages/zoilomora/laravel-msaccess)[![Total Downloads](https://camo.githubusercontent.com/3a5e8eb75e80219af06161131e7a7468f7c48425b46248dd70832fde2701ee8f/68747470733a2f2f706f7365722e707567782e6f72672f7a6f696c6f6d6f72612f6c61726176656c2d6d736163636573732f646f776e6c6f616473)](https://packagist.org/packages/zoilomora/laravel-msaccess)[![Latest Unstable Version](https://camo.githubusercontent.com/650081be02257713c332b9f1fc180c261ec61ea7d2bc0d7d8fb11642add40c52/68747470733a2f2f706f7365722e707567782e6f72672f7a6f696c6f6d6f72612f6c61726176656c2d6d736163636573732f762f756e737461626c65)](https://packagist.org/packages/zoilomora/laravel-msaccess)[![License](https://camo.githubusercontent.com/1570143b1329c42396c2efa5549836e33703958afbcbe73cd45093540ff487c6/68747470733a2f2f706f7365722e707567782e6f72672f7a6f696c6f6d6f72612f6c61726176656c2d6d736163636573732f6c6963656e7365)](https://packagist.org/packages/zoilomora/laravel-msaccess)[![composer.lock](https://camo.githubusercontent.com/3438a04248e40dc9699a46b2084a39a7140770293488b3c9bef7ea1f8e36917f/68747470733a2f2f706f7365722e707567782e6f72672f7a6f696c6f6d6f72612f6c61726176656c2d6d736163636573732f636f6d706f7365726c6f636b)](https://packagist.org/packages/zoilomora/laravel-msaccess)

This package helps you to manage **Microsoft Access DB** by **ODBC Connection**with the integrated [Laravel](https://github.com/laravel/laravel) ORM.

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

[](#installation)

1. Install via composer

```
composer require zoilomora/laravel-msaccess

```

2. Add Service Provider to `config/app.php` in `providers` section:

```
\ZoiloMora\AccessServiceProvider::class,
```

3. Create a **DSN** with the connection to the database.
4. Add connection to `config/database.php` in `connections` section:

```
'access' => [
    'driver' => 'pdo_access',
    'connection_string' => 'dsn={namedsn}',
    'username' => '',
    'password' => '',
    'table_prefix' => '',
]
```

5. Replace `{namedsn}` with the **name of DSN**.

Connect model with the connection
---------------------------------

[](#connect-model-with-the-connection)

1. In the model class add the `$connection` variable like this:

```
protected $connection = 'access';
```

License
-------

[](#license)

Licensed under the [MIT license](http://opensource.org/licenses/MIT)

Read [LICENSE](LICENSE) for more information

###  Health Score

32

—

LowBetter than 69% of packages

Maintenance18

Infrequent updates — may be unmaintained

Popularity36

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity49

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

Unknown

Total

1

Last Release

3257d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/8c4eb3322c15a9344e9c086a7de11c3204bf5aab5321b562bf9193f5ee8cd420?d=identicon)[zoilomora](/maintainers/zoilomora)

---

Top Contributors

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

---

Tags

laravelmicrosoft-accessormlaravelormmicrosoft-access

###  Code Quality

TestsPHPUnit

### Embed Badge

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

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

###  Alternatives

[laravel-doctrine/orm

An integration library for Laravel and Doctrine ORM

8465.5M96](/packages/laravel-doctrine-orm)[yajra/laravel-oci8

Oracle DB driver for Laravel via OCI8

8793.2M25](/packages/yajra-laravel-oci8)[glushkovds/phpclickhouse-laravel

Adapter of the most popular library https://github.com/smi2/phpClickHouse to Laravel

2051.5M2](/packages/glushkovds-phpclickhouse-laravel)[flat3/lodata

OData v4.01 Producer for Laravel

99351.7k](/packages/flat3-lodata)[giacomomasseron/laravel-models-generator

Generate Laravel models from an existing database

557.6k](/packages/giacomomasseron-laravel-models-generator)

PHPackages © 2026

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