PHPackages                             avexsoft/filament-donkey - 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. avexsoft/filament-donkey

ActiveLaravel-library[Utility &amp; Helpers](/categories/utility)

avexsoft/filament-donkey
========================

The smart-ass Filament plugin to manage `config()` in production

1.0.10(3mo ago)3847↑175%[2 issues](https://github.com/avexsoft/filament-donkey/issues)MITPHPCI passing

Since Dec 13Pushed 3mo agoCompare

[ Source](https://github.com/avexsoft/filament-donkey)[ Packagist](https://packagist.org/packages/avexsoft/filament-donkey)[ Docs](https://github.com/avexsoft/filament-donkey)[ RSS](/packages/avexsoft-filament-donkey/feed)WikiDiscussions 1.x Synced 1mo ago

READMEChangelogDependencies (10)Versions (13)Used By (0)

[![Laravel Created By](https://camo.githubusercontent.com/04772924ab918d977d04c44379f2b4521e21122e411cc71e883bf689845b9a4b/68747470733a2f2f62616e6e6572732e6265796f6e64636f2e64652f46696c616d656e74253230446f6e6b65792e6a7065673f7468656d653d6c69676874267061636b6167654d616e616765723d636f6d706f7365722b72657175697265267061636b6167654e616d653d61766578736f667425324666696c616d656e742d646f6e6b6579267061747465726e3d617263686974656374267374796c653d7374796c655f32266465736372697074696f6e3d266d643d312673686f7757617465726d61726b3d3026666f6e7453697a653d3735707826696d616765733d61646a7573746d656e7473)](https://camo.githubusercontent.com/04772924ab918d977d04c44379f2b4521e21122e411cc71e883bf689845b9a4b/68747470733a2f2f62616e6e6572732e6265796f6e64636f2e64652f46696c616d656e74253230446f6e6b65792e6a7065673f7468656d653d6c69676874267061636b6167654d616e616765723d636f6d706f7365722b72657175697265267061636b6167654e616d653d61766578736f667425324666696c616d656e742d646f6e6b6579267061747465726e3d617263686974656374267374796c653d7374796c655f32266465736372697074696f6e3d266d643d312673686f7757617465726d61726b3d3026666f6e7453697a653d3735707826696d616765733d61646a7573746d656e7473)

Filament Donkey
===============

[](#filament-donkey)

[![Latest Version on Packagist](https://camo.githubusercontent.com/91d1a4d912f7927bb1d0f0d7d8b139a3bf19ae7d8cfbce930a050df8d3c8fc49/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f61766578736f66742f66696c616d656e742d646f6e6b65792e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/avexsoft/filament-donkey)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/3ef1e667f9fd22656c47eb0a791fbb69d4eed7494b334f850a5ed8eeeb696c73/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f61766578736f66742f66696c616d656e742d646f6e6b65792f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d6173746572266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/avexsoft/filament-donkey/actions?query=workflow%3A%22Fix+PHP+code+styling%22+branch%3Amaster)[![Total Downloads](https://camo.githubusercontent.com/c44dfad576f761c4303cc34729817db7cae282c20d1fbe98935db2b37f362f67/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f61766578736f66742f66696c616d656e742d646f6e6b65792e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/avexsoft/filament-donkey)

This plugin allows you to modify your Laravel config() in code/any environment without giving access to the .env file.

It's a filament ui to leverage this package [Donkey](https://github.com/avexsoft/donkey)

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

[](#installation)

### Step 1: Install the package via composer.

[](#step-1-install-the-package-via-composer)

```
composer require avexsoft/filament-donkey
```

### Step 2: Add in AdminPanelProvider.php

[](#step-2-add-in-adminpanelproviderphp)

```
use Avexsoft\FilamentDonkey\FilamentDonkeyPlugin;

->plugins([
    FilamentDonkeyPlugin::make(),
])
```

Usage
-----

[](#usage)

Using the power of [Donkey](https://github.com/avexsoft/donkey), this package make it easier to utilize filament ui conveniency to do such things:

### Modify Project Settings

[](#modify-project-settings)

Build your own custom project page setting using the `ConfigTextInput` and `ConfigToggle`

```
