PHPackages                             ifresh/filemaker-model - 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. ifresh/filemaker-model

ActiveLibrary[API Development](/categories/api)

ifresh/filemaker-model
======================

An model wrapper for the filemaker api

v0.1.22(1mo ago)11472[2 issues](https://github.com/iFreshDevelopment/filemakermodel/issues)PHP

Since Jul 29Pushed 1mo ago1 watchersCompare

[ Source](https://github.com/iFreshDevelopment/filemakermodel)[ Packagist](https://packagist.org/packages/ifresh/filemaker-model)[ RSS](/packages/ifresh-filemaker-model/feed)WikiDiscussions main Synced 4d ago

READMEChangelog (10)Dependencies (4)Versions (15)Used By (0)

Filemaker Model Wrapper for Laravel
===================================

[](#filemaker-model-wrapper-for-laravel)

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

[](#installation)

Install the package using composer

```
composer require ifresh/filemaker-model
```

After installation publish the config file using

```
php artisan vendor:publish --provider='Ifresh\FilemakerModel\FilemakerModelServiceProvider'
```

The model
---------

[](#the-model)

Create a new FilemakerModel using the following command. Mind that the Modelname argument will be the classname of the generated model. You are encouraged to use the Laravel naming conventions.

```
php artisan filemaker:model Modelname
```

Set the layout name in the generated model file

```
protected $layout = 'filemaker_layout_name'
```

Getting your data
-----------------

[](#getting-your-data)

Get your records

```
App\Filemaker\Modelname::all();
// returns an eloquent collection with all models
```

If you know the Filemaker internal recordId, you can fetch records with the `find` method.

```
App\Filemaker\Modelname::find(234);
// returns a single model instance
```

Create a record
---------------

[](#create-a-record)

You can create records with ease by using an eloquent like method:

```
$recordId = App\Filemaker\Modelname::create([
    'key1' => 'value',
    'key2' => 'value2'
]);
// returns the given recordId
```

###  Health Score

40

—

FairBetter than 88% of packages

Maintenance73

Regular maintenance activity

Popularity16

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity49

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 58.8% 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 ~143 days

Recently: every ~419 days

Total

13

Last Release

36d ago

### Community

Maintainers

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

---

Top Contributors

[![stephanbouman](https://avatars.githubusercontent.com/u/67788644?v=4)](https://github.com/stephanbouman "stephanbouman (20 commits)")[![sbouman](https://avatars.githubusercontent.com/u/86951752?v=4)](https://github.com/sbouman "sbouman (11 commits)")[![MauritsvLeeuwen](https://avatars.githubusercontent.com/u/34235251?v=4)](https://github.com/MauritsvLeeuwen "MauritsvLeeuwen (3 commits)")

### Embed Badge

![Health badge](/badges/ifresh-filemaker-model/health.svg)

```
[![Health](https://phpackages.com/badges/ifresh-filemaker-model/health.svg)](https://phpackages.com/packages/ifresh-filemaker-model)
```

###  Alternatives

[darkaonline/l5-swagger

OpenApi or Swagger integration to Laravel

2.9k34.0M112](/packages/darkaonline-l5-swagger)[echolabsdev/prism

A powerful Laravel package for integrating Large Language Models (LLMs) into your applications.

2.3k388.3k10](/packages/echolabsdev-prism)[sburina/laravel-whmcs-up

WHMCS API client and user provider for Laravel

271.3k](/packages/sburina-laravel-whmcs-up)

PHPackages © 2026

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