PHPackages                             pxpm/backpack-crud-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. [Admin Panels](/categories/admin)
4. /
5. pxpm/backpack-crud-settings

ActivePackage[Admin Panels](/categories/admin)

pxpm/backpack-crud-settings
===========================

Allow developers to add settings into CRUD

1.2.3(5y ago)8872[1 issues](https://github.com/pxpm/backpack-crud-settings/issues)MITPHP

Since Jul 17Pushed 5y ago3 watchersCompare

[ Source](https://github.com/pxpm/backpack-crud-settings)[ Packagist](https://packagist.org/packages/pxpm/backpack-crud-settings)[ Docs](https://github.com/pxpm/backpack-crud-settings)[ RSS](/packages/pxpm-backpack-crud-settings/feed)WikiDiscussions master Synced 5d ago

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

Backpack Settings
=================

[](#backpack-settings)

#### Create settings dashboards to your Backpack application.

[](#create-settings-dashboards-to-your-backpack-application)

[![bp_settings_main](https://user-images.githubusercontent.com/7188159/74541740-19563900-4f3a-11ea-8819-00f3687be636.PNG)](https://user-images.githubusercontent.com/7188159/74541740-19563900-4f3a-11ea-8819-00f3687be636.PNG)

### Instalation:

[](#instalation)

`composer require pxpm/backpack-crud-settings`

- Migrate the settings table: `php artisan db:migrate`

Publish the config file `php artisan vendor:publish --provider="Pxpm\BpSettings\BpSettingsServiceProvider" --tag=config`

Create a seeder that will seed your settings into database:

`php artisan make:seeder SettingsSeeder`

##### IMPORTANT NOTE

[](#important-note)

> This seeder will be the only source of truth for your settings. This is the way you can add/delete/update settings from database.

The above command will generate something like this in your `Database\Seeds\` folder by default in Laravel application.

```
