PHPackages                             tapp/filament-footer - 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. [Localization &amp; i18n](/categories/localization)
4. /
5. tapp/filament-footer

ActiveFilament-plugin[Localization &amp; i18n](/categories/localization)

tapp/filament-footer
====================

A Filament plugin to add a customizable copyright footer to all panels

v1.0.2(3mo ago)51.8k↓32.4%1MITPHPPHP ^8.2CI passing

Since Jan 15Pushed 3mo agoCompare

[ Source](https://github.com/TappNetwork/filament-footer-package)[ Packagist](https://packagist.org/packages/tapp/filament-footer)[ RSS](/packages/tapp-filament-footer/feed)WikiDiscussions main Synced 1mo ago

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

Filament Footer Package
=======================

[](#filament-footer-package)

Adds a customizable copyright footer to all your Filament panels with full translation support.

Requirements
------------

[](#requirements)

- PHP 8.2+
- Laravel 11+
- Filament 4.x / 5.x

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

[](#installation)

1. Install the package via Composer:

```
composer require tapp/filament-footer
```

2. Publish the configuration file (recommended):

```
php artisan vendor:publish --tag="filament-footer-config"
```

3. Publish the translations (optional, if you want to customize the footer text):

```
php artisan vendor:publish --tag="filament-footer-translations"
```

4. Publish the views (optional, if you want to customize the footer template):

```
php artisan vendor:publish --tag="filament-footer-views"
```

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

[](#configuration)

After publishing the config file, you can customize the footer in `config/filament-footer.php`:

```
return [
    // Company name displayed in the copyright message
    'company_name' => env('FOOTER_COMPANY_NAME', 'Tapp Network'),

    // Company website URL
    'company_url' => env('FOOTER_COMPANY_URL', 'https://tappnetwork.com'),

    // ... other options
];
```

### Environment Variables

[](#environment-variables)

You can also configure the footer using environment variables in your `.env` file:

```
FOOTER_COMPANY_NAME="Your Company"
FOOTER_COMPANY_URL="https://yourcompany.com"
```

Usage
-----

[](#usage)

The footer will automatically appear at the bottom of all your Filament panels once the package is installed. By default, it displays:

```
{app.name} is provided by {company_name}. © {year} {company_name}. All rights reserved.

```

Where:

- `{app.name}` is your application's name from `config('app.name')`
- `{company_name}` is from `config('filament-footer.company_name')`
- `{year}` is the current year
- The company name is linked to `config('filament-footer.company_url')`

Customization
-------------

[](#customization)

### Method 1: Configuration (Easiest)

[](#method-1-configuration-easiest)

Change the company name and URL in your config or `.env` file (or use the env variables):

```
// config/filament-footer.php
'company_name' => 'My Company',
'company_url' => 'https://mycompany.com',
```

### Method 2: Translations (For Multilingual Sites)

[](#method-2-translations-for-multilingual-sites)

Publish and modify the translation files to change the copyright message format:

```
php artisan vendor:publish --tag="filament-footer-translations"
```

Then edit `lang/vendor/filament-footer/en/footer.php`:

```
return [
    'copyright_message' => 'Powered by :company_link | © :year :company_name',
    'company_link_text' => ':company_name',
];
```

### Method 3: Views (For Complete Control)

[](#method-3-views-for-complete-control)

Publish and modify the Blade template:

```
php artisan vendor:publish --tag="filament-footer-views"
```

Then customize `resources/views/vendor/filament-footer/footer.blade.php` to change:

- The entire HTML structure
- Styling and layout
- Add additional links or information

Styling
-------

[](#styling)

The footer includes:

- Responsive design
- Dark mode support
- Centered text layout
- Proper color contrast for accessibility
- Tailwind CSS classes compatible with Filament

License
-------

[](#license)

This package is open-sourced software licensed under the MIT license.

###  Health Score

45

—

FairBetter than 93% of packages

Maintenance78

Regular maintenance activity

Popularity27

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity50

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 52% 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 ~3 days

Total

3

Last Release

118d ago

PHP version history (2 changes)v1.0.0PHP ^8.1

v1.0.1PHP ^8.2

### Community

Maintainers

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

![](https://www.gravatar.com/avatar/4c469e4e441a135287b2154a0a39f543893cbe1e2c3ab066e3e7c66a974a39e2?d=identicon)[scottgrayson](/maintainers/scottgrayson)

![](https://www.gravatar.com/avatar/5d0402fb770bca016dd6ee6a925501e0224783f1e5907788aee0ba7bc31c01ee?d=identicon)[andreiabohner](/maintainers/andreiabohner)

![](https://www.gravatar.com/avatar/5ac72d31fcf96191b82f452d6df6990219c5ffdfd7673859d3fa46cf1dd6193b?d=identicon)[johnwesely](/maintainers/johnwesely)

---

Top Contributors

[![andreia](https://avatars.githubusercontent.com/u/38911?v=4)](https://github.com/andreia "andreia (13 commits)")[![swilla](https://avatars.githubusercontent.com/u/304159?v=4)](https://github.com/swilla "swilla (9 commits)")[![jeffersongoncalves](https://avatars.githubusercontent.com/u/411493?v=4)](https://github.com/jeffersongoncalves "jeffersongoncalves (3 commits)")

---

Tags

laraveli18nmultilingualfooterconfigurablefilamentcopyright

### Embed Badge

![Health badge](/badges/tapp-filament-footer/health.svg)

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

###  Alternatives

[jayesh/laravel-gemini-translator

An interactive command to extract and generate Laravel translations using Gemini AI.

691.7k1](/packages/jayesh-laravel-gemini-translator)

PHPackages © 2026

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