PHPackages                             statview/filament-record-finder - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. statview/filament-record-finder

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

statview/filament-record-finder
===============================

Record finder form component for Filament

1.0.2(1y ago)2578↓84.6%2MITPHP

Since Nov 2Pushed 11mo ago1 watchersCompare

[ Source](https://github.com/statview-app/filament-record-finder)[ Packagist](https://packagist.org/packages/statview/filament-record-finder)[ RSS](/packages/statview-filament-record-finder/feed)WikiDiscussions main Synced 2w ago

READMEChangelog (5)Dependencies (3)Versions (7)Used By (0)

This package is a WIP
=====================

[](#this-package-is-a-wip)

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

[](#installation)

```
composer require statview/filament-record-finder
```

Create record finder classes
----------------------------

[](#create-record-finder-classes)

```
use App\Models\User;
use Filament\Tables\Columns;
use Filament\Tables\Table;
use Statview\FilamentRecordFinder\RecordFinder;

class RecordFinderDemo extends RecordFinder
{
    public function table(Table $table)
    {
        return $table
            ->query(
                fn () => User::query()
                    ->whereNotIn('id', $this->existingRecord)
            )
            ->columns([
                Columns\TextColumn::make('name')
                    ->searchable()
                    ->sortable(),
            ]);
    }
}
```

Usage
-----

[](#usage)

```
use Filament\Tables\Columns\TextColumn;
use Statview\FilamentRecordFinder\Forms\RecordFinder;

RecordFinder::make('pages')
    ->label('Subpages')
    ->relation('pages', 'title')
    ->grid()
    ->recordFinder(RecordFinderDemo::class),
```

###  Health Score

32

—

LowBetter than 69% of packages

Maintenance46

Moderate activity, may be stable

Popularity17

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity48

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

Total

5

Last Release

537d ago

Major Versions

0.1.1 → 1.0.02024-01-04

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/6506510?v=4)[Sebastiaan Kloos](/maintainers/SebastiaanKloos)[@SebastiaanKloos](https://github.com/SebastiaanKloos)

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/statview-filament-record-finder/health.svg)

```
[![Health](https://phpackages.com/badges/statview-filament-record-finder/health.svg)](https://phpackages.com/packages/statview-filament-record-finder)
```

###  Alternatives

[laravel/surveyor

Static analysis tool for Laravel applications.

89157.7k16](/packages/laravel-surveyor)[forjedio/inertia-table

Backend-driven dynamic tables for Laravel + Inertia.js

272.0k](/packages/forjedio-inertia-table)

PHPackages © 2026

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