tobytwigger/laravel-settings

Settings for Laravel
11,952 1
Install
composer require tobytwigger/laravel-settings
Latest Version:v3.0.1
PHP:^8.2
License:MIT
Last Updated:May 19, 2025
Links: GitHub  ·  Packagist
Maintainer: tt15951

Laravel Settings

Powerful and feature rich settings for Laravel.

Latest Version Build

Contents

About

Laravel Settings lets you persist strongly typed settings within your app, with support for

  • Validation, encryption and authorization controls provided.
  • Global settings and user-set settings.
  • Native integration with Vue JS.

Example

\Settings\Setting::setValue('dark_mode', true);
echo \Settings\Setting::getValue('dark_mode'); // true
<template>
    <div :class="{'dark-mode': $setting.dark_mode}"></div>
    <button @click="toggleDarkMode">Toggle</button>
</template>
<script>
    export default {
        methods: {
            toggleDarkMode() {
                this.$setting.dark_mode = !this.$setting.dark_mode;
            }
        }
    }
</script>

Documentation

We've taken care over documenting everything you'll need to get started and use Laravel settings fully.

Check out the docs on our documentation site.

Contributing

Contributions are welcome! Before contributing to this project, familiarize yourself with CONTRIBUTING.md.

Copyright and Licence

This package is copyright © Toby Twigger and licensed for use under the terms of the MIT License (MIT). Please see LICENCE.md for more information.

Contact

For any questions, suggestions, security vulnerabilities or help, open an issue or email me directly at tobytwigger1@gmail.com

Related Packages

buzz/laravel-setting

Package changes config for laravel 5.*

1,098 1
arcanedev/laravel-settings

This package allows you to persists configs/settings for Laravel projects.

143,099 74
delatbabel/site-config

A database backed config loader for Laravel with per-site configuration.

1,363 4
cornford/setter

An easy way to intergrate Database Settings with Laravel.

1,046 13