PHPackages                             jamin87/laravel-sitesettings - 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. jamin87/laravel-sitesettings

Abandoned → [bwibrew/laravel-sitesettings](/?search=bwibrew%2Flaravel-sitesettings)Library[Utility &amp; Helpers](/categories/utility)

jamin87/laravel-sitesettings
============================

Persistent site settings for Laravel

1.1.1(6y ago)413[3 issues](https://github.com/BWibrew/laravel-sitesettings/issues)MITPHPPHP &gt;=7.2

Since Aug 8Pushed 5y ago4 watchersCompare

[ Source](https://github.com/BWibrew/laravel-sitesettings)[ Packagist](https://packagist.org/packages/jamin87/laravel-sitesettings)[ RSS](/packages/jamin87-laravel-sitesettings/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (6)Dependencies (12)Versions (14)Used By (0)

Persistent CMS style site settings for Laravel
==============================================

[](#persistent-cms-style-site-settings-for-laravel)

[![Latest Version on Packagist](https://camo.githubusercontent.com/d10c8d9290d8f7ba6aaa4b7a1feef9cacbc1e054358dcc2bb41b73f4ee97bd07/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f627769627265772f6c61726176656c2d7369746573657474696e67732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/BWibrew/laravel-sitesettings)[![CircleCI](https://camo.githubusercontent.com/414a44a0b8d4cf1841f72135f79b2390ace58fb3dab59f2c350a6607970e2e8f/68747470733a2f2f696d672e736869656c64732e696f2f636972636c6563692f70726f6a6563742f6769746875622f425769627265772f6c61726176656c2d7369746573657474696e67732e7376673f7374796c653d666c61742d737175617265)](https://circleci.com/gh/BWibrew/laravel-sitesettings)[![StyleCI](https://camo.githubusercontent.com/92240f0a0a35f120706aa95afd3b8f4a842d6b580a8d717eb0870067f8d08b34/68747470733a2f2f7374796c6563692e696f2f7265706f732f39393732353833392f736869656c643f6272616e63683d6d6173746572)](https://styleci.io/repos/99725839)[![Codacy grade](https://camo.githubusercontent.com/e020a5b4f76fcba72b3ee18b2a843e7d7a6935a80589e294c50593c57635b30b/68747470733a2f2f696d672e736869656c64732e696f2f636f646163792f67726164652f31376238373036316630666134313064383565643633373837653633306631382e7376673f7374796c653d666c61742d737175617265)](https://www.codacy.com/app/BWibrew/laravel-sitesettings)[![Codacy coverage](https://camo.githubusercontent.com/09072611aade92201f799db7f541fe130179d0ffcd6ad0bca3afaddb26d8576f/68747470733a2f2f696d672e736869656c64732e696f2f636f646163792f636f7665726167652f31376238373036316630666134313064383565643633373837653633306631382e7376673f7374796c653d666c61742d737175617265)](https://www.codacy.com/app/BWibrew/laravel-sitesettings)

Support
-------

[](#support)

This version supports Laravel 5.5 - 6 / PHP 7.2 and above.

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

[](#installation)

Install using Composer by running:

```
composer require BWibrew/laravel-sitesettings

```

Publish the config file with:

```
php artisan vendor:publish --provider="BWibrew\SiteSettings\SiteSettingsServiceProvider" --tag="config"

```

Publish the migrations with:

```
php artisan vendor:publish --provider="BWibrew\SiteSettings\SiteSettingsServiceProvider" --tag="migrations"

```

Then run table migrations with:

```
php artisan migrate

```

### Configuring your models

[](#configuring-your-models)

Add the following interface, trait and `$fillable` attribute to your `Setting` model:

```
