PHPackages                             peresmishnyk/backpack-settings - 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. peresmishnyk/backpack-settings

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

peresmishnyk/backpack-settings
==============================

Settings for laravel backpack

03.6kPHP

Since Apr 9Pushed 1y ago1 watchersCompare

[ Source](https://github.com/peresmishnyk/backpack-settings)[ Packagist](https://packagist.org/packages/peresmishnyk/backpack-settings)[ RSS](/packages/peresmishnyk-backpack-settings/feed)WikiDiscussions develop Synced today

READMEChangelogDependenciesVersions (1)Used By (0)

BackpackSetting
===============

[](#backpacksetting)

[![Latest Version on Packagist](https://camo.githubusercontent.com/86843bafdc54dcad2f27730612bca47ccc6c8ae9afe5872a41fb7bf7717c8b90/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f70657265736d6973686e796b2f6261636b7061636b2d73657474696e672e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/peresmishnyk/backpack-setting)[![Total Downloads](https://camo.githubusercontent.com/c930e613de51a50d4ed3ea7002b016007ccf5aa1e60aa720e2a64f02dc5751eb/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f70657265736d6973686e796b2f6261636b7061636b2d73657474696e672e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/peresmishnyk/backpack-setting)[![The Whole Fruit Manifesto](https://camo.githubusercontent.com/9fc65ecdd629dc33c369f73e0bc051740f01647367c131a574577fea2a5678bb/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f77726974696e672532307374616e646172642d74686525323077686f6c6525323066727569742d627269676874677265656e)](https://github.com/the-whole-fruit/manifesto)

> **// TODO: customize this description and delete this line**

This package provides XXX functionality for projects that use the [Backpack for Laravel](https://backpackforlaravel.com/) administration panel.

More exactly, it adds X and Y so that you can easily do Z.

Screenshots
-----------

[](#screenshots)

> **// TODO: add a screenshot and delete these lines;**to add a screenshot to a github markdown file, the easiest way is to open an issue, upload the screenshot there with drag&amp;drop, then close the issue; you now have that image hosted on Github's servers; so you can then right-click the image to copy its URL, and use that URL wherever you want (for example... here)

[![Backpack Toggle Field Addon](https://camo.githubusercontent.com/b3c12818c44e1245eda449e25b601ccb9d8a08ae587027f980cf36919243c346/68747470733a2f2f7669612e706c616365686f6c6465722e636f6d2f363030783235303f746578743d73637265656e73686f742b6e6565646564)](https://camo.githubusercontent.com/b3c12818c44e1245eda449e25b601ccb9d8a08ae587027f980cf36919243c346/68747470733a2f2f7669612e706c616365686f6c6465722e636f6d2f363030783235303f746578743d73637265656e73686f742b6e6565646564)

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

[](#installation)

Via Composer

```
composer require peresmishnyk/backpack-setting
```

Usage
-----

[](#usage)

> **// TODO: explain to your users how to use the functionality** this package provides; we've provided an example for a Backpack addon that provides a custom field

To use the field this package provides, inside your custom CrudController do:

```
$this->crud->addField([
    'name' => 'agreed',
    'label' => 'I agree to the terms and conditions',
    'type' => 'new_field_name',
    'view_namespace' => 'peresmishnyk.backpack-setting::fields',
]);
```

Notice the `view_namespace` attribute - make sure that is exactly as above, to tell Backpack to load the field from this *addon package*, instead of assuming it's inside the *Backpack\\CRUD package*.

Overwriting
-----------

[](#overwriting)

> **// TODO: explain to your users how to overwrite the functionality this package provides;**we've provided an example for a custom field

If you need to change the field in any way, you can easily publish the file to your app, and modify that file any way you want. But please keep in mind that you will not be getting any updates.

**Step 1.** Copy-paste the blade file to your directory:

```
# create the fields directory if it's not already there
mkdir -p resources/views/vendor/backpack/crud/fields

# copy the blade file inside the folder we created above
cp -i vendor/peresmishnyk/backpack-setting/src/resources/views/fields/field_name.blade.php resources/views/vendor/backpack/crud/fields/field_name.blade.php
```

**Step 2.** Remove the vendor namespace wherever you've used the field:

```
$this->crud->addField([
    'name' => 'agreed',
    'type' => 'toggle',
    'label' => 'I agree to the terms and conditions',
-   'view_namespace' => 'peresmishnyk.backpack-setting::fields'
]);
```

**Step 3.** Uninstall this package. Since it only provides one file, and you're no longer using that file, it makes no sense to have the package installed:

```
composer remove peresmishnyk/backpack-setting
```

Change log
----------

[](#change-log)

Changes are documented here on Github. Please see the [Releases tab](https://github.com/peresmishnyk/backpack-setting/releases).

Testing
-------

[](#testing)

```
composer test
```

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

[](#contributing)

Please see [contributing.md](contributing.md) for a todolist and howtos.

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Michkire Dmytro](https://github.com/peresmishnyk)
- [All Contributors](../../contributors)

License
-------

[](#license)

This project was released under MIT, so you can install it on top of any Backpack &amp; Laravel project. Please see the [license file](license.md) for more information.

However, please note that you do need Backpack installed, so you need to also abide by its [YUMMY License](https://github.com/Laravel-Backpack/CRUD/blob/master/LICENSE.md). That means in production you'll need a Backpack license code. You can get a free one for non-commercial use (or a paid one for commercial use) on [backpackforlaravel.com](https://backpackforlaravel.com).

###  Health Score

19

—

LowBetter than 10% of packages

Maintenance35

Infrequent updates — may be unmaintained

Popularity16

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity15

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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/9dfc5a54feed8b4fc503860978df27a51c39724e00af2ca51c6cc861cdb368d2?d=identicon)[peresmishnyk](/maintainers/peresmishnyk)

---

Top Contributors

[![peresmishnyk](https://avatars.githubusercontent.com/u/1893866?v=4)](https://github.com/peresmishnyk "peresmishnyk (20 commits)")

### Embed Badge

![Health badge](/badges/peresmishnyk-backpack-settings/health.svg)

```
[![Health](https://phpackages.com/badges/peresmishnyk-backpack-settings/health.svg)](https://phpackages.com/packages/peresmishnyk-backpack-settings)
```

###  Alternatives

[robinherbots/jquery.inputmask

Inputmask is a javascript library which creates an input mask. Inputmask can run against vanilla javascript, jQuery and jqlite.

6.5k276.6k4](/packages/robinherbots-jqueryinputmask)[webman/captcha

Captcha generator

1484.2k25](/packages/webman-captcha)

PHPackages © 2026

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