PHPackages                             yemenopensource/filament-excel - 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. yemenopensource/filament-excel

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

yemenopensource/filament-excel
==============================

This package useful for importing excel files into models.

0.1.0(1y ago)193.8k↓11.1%2[1 issues](https://github.com/YemenOpenSource/filament-excel/issues)MITPHP

Since Jun 5Pushed 1y agoCompare

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

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

[![Stand With Palestine](https://raw.githubusercontent.com/TheBSD/StandWithPalestine/main/banner-no-action.svg)](https://TheBSD.github.io/StandWithPalestine/)

[![Filament Excel.png](https://camo.githubusercontent.com/08da2bc3e5b884bd23b8e7f26170e5c9c47589f14fd36e2b1f34cbe55868f842/68747470733a2f2f62616e6e6572732e6265796f6e64636f2e64652f46696c616d656e74253230457863656c2e706e673f7468656d653d6c69676874267061636b6167654d616e616765723d636f6d706f7365722b72657175697265267061636b6167654e616d653d79656d656e6f70656e736f7572636525324666696c616d656e742d657863656c267061747465726e3d617263686974656374267374796c653d7374796c655f31266465736372697074696f6e3d5468652b656173696573742b7761792b746f2b776f726b2b776974682b253232457863656c253232266d643d312673686f7757617465726d61726b3d3126666f6e7453697a653d313030707826696d616765733d7461626c65)](https://camo.githubusercontent.com/08da2bc3e5b884bd23b8e7f26170e5c9c47589f14fd36e2b1f34cbe55868f842/68747470733a2f2f62616e6e6572732e6265796f6e64636f2e64652f46696c616d656e74253230457863656c2e706e673f7468656d653d6c69676874267061636b6167654d616e616765723d636f6d706f7365722b72657175697265267061636b6167654e616d653d79656d656e6f70656e736f7572636525324666696c616d656e742d657863656c267061747465726e3d617263686974656374267374796c653d7374796c655f31266465736372697074696f6e3d5468652b656173696573742b7761792b746f2b776f726b2b776974682b253232457863656c253232266d643d312673686f7757617465726d61726b3d3126666f6e7453697a653d313030707826696d616765733d7461626c65)

Filament Excel
==============

[](#filament-excel)

The easiest way to work with "Excel", you only need to get fimiliar with [Laravel Excel](https://github.com/SpartnerNL/Laravel-Excel) to supercharged Excel exports and imports on your filament projects.

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

[](#installation)

You can install the package via Composer:

```
composer require yemenopensource/filament-excel
```

Usage
-----

[](#usage)

Create [Create a new Import](https://docs.laravel-excel.com/3.1/imports/) for your model for example 'Content' model.

```
php artisan make:import ContentsImport --model=Content
```

Use the `Import` action on your filament resouce list page for example 'ListContents' page is a page to list the records of 'ContentResource':

```
// app\Filament\Resources\ContentResource\Pages\ListContents.php

use YOS\FilamentExcel\Actions\Import;

protected function getHeaderActions(): array
{
    return [
        // ...  other actions like 'CreateAction'
        Import::make()
            ->import(ContentsImport::class)
            ->type(\Maatwebsite\Excel\Excel::XLSX)
            ->label('Import from excel')
            ->hint('Upload xlsx type')
            ->icon(HeroIcons::C_ARROW_UP)
            ->color('success'),
    ];
}
```

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

[](#configuration)

The package provides a configuration file that allows you to customize its behavior.

You can publish the configuration file by using the following command:

```
php artisan vendor:publish --provider="YOS\FilamentExcel\ServiceProvider" --tag="config"
```

After publishing the configuration file, you can find it at config/filamentExcel.php. Open this file and modify it according to your requirements.

Translations
------------

[](#translations)

You can publish translations using:

```
php artisan vendor:publish --provider="YOS\FilamentExcel\ServiceProvider" --tag="config"
```

When users of the package execute Laravel's `vendor:publish` Artisan command, the package's language files will be published to `language path/vendor/filament-excel`.

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

[](#contributing)

Contributions are welcome! If you find any issues or have suggestions for improvements, please feel free to create an issue or a pull request.

License
-------

[](#license)

The package is part of yemen open source and it is licensed under the MIT license.

Credits
-------

[](#credits)

- [Muath Alsowadi](https://github.com/muath-ye)

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance30

Infrequent updates — may be unmaintained

Popularity31

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity30

Early-stage or recently created project

 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

712d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/66c9b114af377fd2400eb4737a18d5d6833a0ece6fc4f9d3b063000d50253f97?d=identicon)[muath-ye](/maintainers/muath-ye)

---

Top Contributors

[![muath-ye](https://avatars.githubusercontent.com/u/34031333?v=4)](https://github.com/muath-ye "muath-ye (2 commits)")

### Embed Badge

![Health badge](/badges/yemenopensource-filament-excel/health.svg)

```
[![Health](https://phpackages.com/badges/yemenopensource-filament-excel/health.svg)](https://phpackages.com/packages/yemenopensource-filament-excel)
```

###  Alternatives

[illuminate/database

The Illuminate Database package.

2.8k52.4M9.4k](/packages/illuminate-database)[cviebrock/eloquent-taggable

Easy ability to tag your Eloquent models in Laravel.

567694.8k3](/packages/cviebrock-eloquent-taggable)[clickbar/laravel-magellan

This package provides functionality for working with the postgis extension in Laravel.

423715.4k1](/packages/clickbar-laravel-magellan)[genealabs/laravel-pivot-events

This package introduces new eloquent events for sync(), attach(), detach() or updateExistingPivot() methods on BelongsToMany relation.

1404.9M8](/packages/genealabs-laravel-pivot-events)[reedware/laravel-relation-joins

Adds the ability to join on a relationship by name.

2121.2M13](/packages/reedware-laravel-relation-joins)[aglipanci/laravel-eloquent-case

Adds CASE statement support to Laravel Query Builder.

115157.2k](/packages/aglipanci-laravel-eloquent-case)

PHPackages © 2026

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