owowagency/laravel-settings 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

owowagency/laravel-settings

Composer 安装命令:

composer require owowagency/laravel-settings

包简介

A package of settings features for the Laravel framework.

README 文档

README

Total Downloads Latest Stable Version

A package of settings features for the Laravel framework.

Installation

Installing this package can be done easily via the following Artisan command.

composer require owowagency/laravel-settings

Setup

To install all the vendor files you can run the following command.

php artisan vendor:publish --provider="OwowAgency\LaravelSettings\LaravelSettingsServiceProvider"

This will copy all the vendor files, including configuration, migrations and resources. If you wish to only install certain files you can use the command described in the next paragraphs.

Config

If you wish to publish the configuration file, you can use the following command:

php artisan vendor:publish --provider="OwowAgency\LaravelSettings\LaravelSettingsServiceProvider" --tag=config

Settings

The settings configuration holds all the values which can be used within the application. Each setting should have a unique key. For setting the key we would recommend using a package like Laravel Enum. Beside the key, we use the following attributes:

  • title (default: null): here you can store a small title of the setting.
  • description (default: null): a description about the setting which you might want to display to the user.
  • type (default: string): the variable type of the setting (the type should be acceptable by the settype() method).
  • default (default: null): the default value which will be used if the user hasn't stored the value in the database yet.
  • nullable (default: true): indicates if this setting may have the null value.

Table

The table_name configuration holds the value which is being used for the table name. By default, this has been set to settings, but if you wish to use a different table name you can change it with this configuration value.

Resources

The package uses Laravel its API Resources. We ship the package with one resource, which will return the setting model. If you wish to use a custom resource, you can specify them in this list.

Migrations

If you wish to publish the migrations, you can use the following command:

php artisan vendor:publish --provider="OwowAgency\LaravelSettings\LaravelSettingsServiceProvider" --tag=migrations

Routes

To set up all the routes needed for this package you can call the setting macro on the Route facade. By doing so, all the routes which are required by this package will be available to call.

Route::settings('users', App\Models\User::class);

After adding this to one of your routes files (i.e. routes/api.php), the following two routes will be available.

Index

This route can be used to index all the settings of a user: GET /users/{user}/settings. This route will always return all configured settings in the settings config value. Also, values which are not yet stored for the authenticated user. The package will then use the default configured value.

Response

[
    {
        "title": "Receive commercial emails",
        "description": "Would you like to receive commercial emails for our marketing campaign?",
        "type": "bool",
        "default": false,
        "nullable": false,
        "key": "wants_promotion_emails",
        "value": false
    }
]

Update

This route can be used to update the given setting values: PATCH /users/{user}/settings.

Request

[
    {
        "key": "wants_promotion_emails",
        "value": true
    } 
]

Response

[
    {
        "title": "Receive commercial emails",
        "description": "Would you like to receive commercial emails for our marketing campaign?",
        "type": "bool",
        "default": false,
        "nullable": false,
        "key": "wants_promotion_emails",
        "value": true
    }
]

Usage

If you want a certain model (we'll use the user model in this example) to have settings you can add the OwowAgency\LaravelSettings\Models\Concerns\HasSettings trait to the model. First you should add the OwowAgency\LaravelSettings\Models\Concerns\HasSettingsInterface to the model. Your model could look like this.

<?php

namespace App\Models;

use Illuminate\Foundation\Auth\User as BaseUser;
use OwowAgency\LaravelSettings\Models\Concerns\HasSettings;
use OwowAgency\LaravelSettings\Models\Contracts\HasSettingsInterface;

class User extends BaseUser implements HasSettingsInterface
{
    use HasSettings;
}

Now, to get a certain config value from the user you can do this:

$user->settings->getValue('wants_promotion_emails');

// Or

$user->settings->wants_promotion_emails;

统计信息

  • 总下载量: 742
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: Unknown
  • 更新时间: 2020-11-02

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固