PHPackages                             refbytes/filament-laravel-scout - 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. refbytes/filament-laravel-scout

ActiveLibrary

refbytes/filament-laravel-scout
===============================

Adds indexing actions to filament resources

v1.0.0(2y ago)02MITPHP

Since Nov 24Pushed 2y ago1 watchersCompare

[ Source](https://github.com/refbytes/filament-laravel-scout)[ Packagist](https://packagist.org/packages/refbytes/filament-laravel-scout)[ RSS](/packages/refbytes-filament-laravel-scout/feed)WikiDiscussions main Synced 1mo ago

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

Actions to Run Laravel Scout from Filamment Panels
==================================================

[](#actions-to-run-laravel-scout-from-filamment-panels)

[![Latest Version on Packagist](https://camo.githubusercontent.com/e71f17d6869f191c3097f8d3718ea8205de8bc96cd128c217c6c9e1489a693ad/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f72656662797465732f66696c616d656e742d6c61726176656c2d73636f75742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/refbytes/filament-laravel-scout)[![Total Downloads](https://camo.githubusercontent.com/fae91f202f5fc0aa4a921ade772ebbe8c946b00b06ba039ca86a3aaef43afbce/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f72656662797465732f66696c616d656e742d6c61726176656c2d73636f75742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/refbytes/filament-laravel-scout)[![License](https://camo.githubusercontent.com/5b5aecdf87009c29bdc079401b9ef36ef795313e69a4fd238f8687f72eb18982/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f72656662797465732f66696c616d656e742d6c61726176656c2d73636f7574)](https://packagist.org/packages/refbytes/filament-laravel-scout)

---

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

[](#installation)

Install the package with composer.

```
composer composer require refbytes/filament-laravel-scout
```

To add a bulk import action button to a Filament Resource, open the Resource's ListRecords class and add `\Refbytes\FilamentLaravelScout\Actions\ScoutImportResourceAction::make(),` to the `getHeaderActions()` method.

```
class ListUsers extends ListRecords
{
    protected static string $resource = UserResource::class;

    protected function getHeaderActions(): array
    {
        return [
            Actions\CreateAction::make(),
            \Refbytes\FilamentLaravelScout\Actions\ScoutImportResourceAction::make(),
        ];
    }
}
```

To add a Filament Bulk Action to only import selected records Filament Table, open the Resource class and add `\Refbytes\FilamentLaravelScout\Actions\ScoutAddResourceAction::make(),` to the `bulkActions()` method on the Resource $table.

```
public static function table(Table $table): Table
    {
        return $table
            ->columns([
                //
            ])
            ->filters([
                //
            ])
            ->actions([
                Tables\Actions\EditAction::make(),
            ])
            ->bulkActions([
                Tables\Actions\BulkActionGroup::make([
                    Tables\Actions\DeleteBulkAction::make(),
                    \Refbytes\FilamentLaravelScout\Actions\ScoutAddResourceAction::make(),
                ]),
            ]);
    }
```

Contributing
------------

[](#contributing)

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**.

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!

1. Fork the Project
2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)
3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
4. Push to the Branch (`git push origin feature/AmazingFeature`)
5. Open a Pull Request

License
-------

[](#license)

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

###  Health Score

19

—

LowBetter than 10% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity2

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity42

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

900d ago

### Community

Maintainers

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

---

Top Contributors

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

###  Code Quality

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/refbytes-filament-laravel-scout/health.svg)

```
[![Health](https://phpackages.com/badges/refbytes-filament-laravel-scout/health.svg)](https://phpackages.com/packages/refbytes-filament-laravel-scout)
```

###  Alternatives

[kirschbaum-development/commentions

A package to allow you to create comments, tag users and more

12369.2k](/packages/kirschbaum-development-commentions)[relaticle/flowforge

Flowforge is a lightweight Kanban board package for Filament that works with existing Eloquent models.

39246.7k2](/packages/relaticle-flowforge)[vormkracht10/laravel-mails

Laravel Mails can collect everything you might want to track about the mails that has been sent by your Laravel app.

24149.7k](/packages/vormkracht10-laravel-mails)[mozex/laravel-scout-bulk-actions

A Laravel Scout extension for bulk importing and flushing of all models.

1033.4k](/packages/mozex-laravel-scout-bulk-actions)[codebar-ag/laravel-filament-json-field

A Laravel Filament JSON Field integration with CodeMirror support

1124.1k](/packages/codebar-ag-laravel-filament-json-field)[defstudio/filament-column-length-limiter

Limit Filament columns length showing a tooltip when text exceeds

126.2k](/packages/defstudio-filament-column-length-limiter)

PHPackages © 2026

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