亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

目錄
2. Create a Settings Service or Facade
3. Bind the Service in Service Provider (Optional)
4. Create a Facade (Optional but Convenient)
5. Create an Artisan Command to Clear Settings Cache (Optional)
6. Add a Controller and Admin Interface (Optional)
7. Load Settings on Boot (Optional Performance Optimization)
Final Notes
首頁(yè) php框架 Laravel 如何在Laravel創(chuàng)建設(shè)置管理系統(tǒng)?

如何在Laravel創(chuàng)建設(shè)置管理系統(tǒng)?

Aug 04, 2025 am 08:44 AM

創(chuàng)建一個(gè)數(shù)據(jù)庫(kù)表和模型用於存儲(chǔ)鍵值對(duì)設(shè)置;2. 創(chuàng)建一個(gè)服務(wù)類(lèi)(SettingService)來(lái)封裝獲取、設(shè)置和刪除設(shè)置的邏輯,並實(shí)現(xiàn)內(nèi)存緩存;3. 在服務(wù)提供者中將服務(wù)註冊(cè)為單例以便依賴(lài)注入;4. 可選地創(chuàng)建門(mén)面(Facade)以支持全局靜態(tài)調(diào)用如Setting::get();5. 可選地創(chuàng)建控制器和管理界面用於通過(guò)表單更新設(shè)置;6. 在應(yīng)用啟動(dòng)時(shí)預(yù)加載常用設(shè)置到配置中以提升性能;該系統(tǒng)通過(guò)數(shù)據(jù)庫(kù)動(dòng)態(tài)管理應(yīng)用級(jí)配置,適用於可由管理員修改的設(shè)置項(xiàng),不替代.env中的環(huán)境變量,具有良好的擴(kuò)展性和復(fù)用性,完整實(shí)現(xiàn)了一個(gè)靈活的Laravel設(shè)置管理系統(tǒng)。

How to create a settings management system in Laravel?

Creating a settings management system in Laravel allows you to store, retrieve, and update application-level configuration values dynamically—like site name, contact email, theme options, or API keys—without hardcoding them or relying solely on .env files.

How to create a settings management system in Laravel?

Here's how to build a flexible and reusable settings system in Laravel.


1. Create a Settings Database Table and Model

First, create a database table to store key-value pairs for your settings.

How to create a settings management system in Laravel?

Run the migration:

 php artisan make:migration create_settings_table

In the migration file:

How to create a settings management system in Laravel?
 Schema::create('settings', function (Blueprint $table) {
    $table->id();
    $table->string('key')->unique();
    $table->text('value')->nullable();
    $table->timestamps();
});

Run the migration:

 php artisan migrate

Now create a model:

 php artisan make:model Setting

Optional: Add mass-assignable fields in the Setting model:

 class Setting extends Model
{
    protected $fillable = ['key', 'value'];
}

2. Create a Settings Service or Facade

To make accessing settings easy throughout your app, create a service class.

 php artisan make:service SettingService

If make:service isn't available, just create app/Services/SettingService.php manually.

 namespace App\Services;

use App\Models\Setting;

class SettingService
{
    protected array $cache = [];

    public function get(string $key, mixed $default = null): mixed
    {
        if (! array_key_exists($key, $this->cache)) {
            $setting = Setting::where('key', $key)->first();
            $this->cache[$key] = $setting?->value ?? $default;
        }

        return $this->cache[$key];
    }

    public function set(string $key, mixed $value): void
    {
        Setting::updateOrCreate(['key' => $key], ['value' => $value]);
        $this->cache[$key] = $value;
    }

    public function forget(string $key): void
    {
        Setting::where('key', $key)->delete();
        unset($this->cache[$key]);
    }

    public function all(): array
    {
        return Setting::pluck('value', 'key')->toArray();
    }
}

3. Bind the Service in Service Provider (Optional)

To make the service easily injectable, bind it in AppServiceProvider or create a SettingServiceProvider .

In app/Providers/AppServiceProvider.php :

 use App\Services\SettingService;
use Illuminate\Support\ServiceProvider;

public function register()
{
    $this->app->singleton(SettingService::class, function ($app) {
        return new SettingService();
    });
}

Now you can inject SettingService into controllers, middleware, or views.


4. Create a Facade (Optional but Convenient)

Create a facade for easier access like Setting::get('site_name') .

First, create app/Facades/Setting.php :

 namespace App\Facades;

use Illuminate\Support\Facades\Facade;

class Setting extends Facade
{
    protected static function getFacadeAccessor()
    {
        return \App\Services\SettingService::class;
    }
}

Register it in config/app.php under aliases:

 'Setting' => App\Facades\Setting::class,

Now you can use:

 use Setting;

$value = Setting::get('site_name');
Setting::set('contact_email', 'admin@example.com');

5. Create an Artisan Command to Clear Settings Cache (Optional)

Since we're caching in memory during a request, no persistent cache is used here. But if you later add Redis or config caching, you might need a command to clear.

For now, it's not needed unless you expand the system.


6. Add a Controller and Admin Interface (Optional)

To manage settings via UI:

 php artisan make:controller Admin/SettingController

Example method to list and update settings:

 use App\Services\SettingService;
use Illuminate\Http\Request;

public function index(SettingService $service)
{
    return view('admin.settings', ['settings' => $service->all()]);
}

public function update(Request $request, SettingService $service)
{
    foreach ($request->except('_token') as $key => $value) {
        $service->set($key, $value);
    }

    return back()->with('success', 'Settings saved.');
}

Blade example ( resources/views/admin/settings.blade.php ):

 <form method="POST">
    @csrf
    <input name="site_name" value="{{ Setting::get(&#39;site_name&#39;) }}">
    <input name="contact_email" value="{{ Setting::get(&#39;contact_email&#39;) }}">
    <button type="submit">Save</button>
</form>

7. Load Settings on Boot (Optional Performance Optimization)

If you always use certain settings, preload them when the app boots.

In a service provider (eg, AppServiceProvider@boot ):

 public function boot(SettingService $service)
{
    // Preload common settings if needed
    config([
        &#39;mail.from.address&#39; => $service->get(&#39;contact_email&#39;),
        &#39;app.name&#39; => $service->get(&#39;site_name&#39;),
    ]);
}

Or use middleware to preload all settings once per request if needed.


Final Notes

  • This system is dynamic and database-driven.
  • It's ideal for admin-modifiable settings.
  • For performance, consider caching with Laravel's cache system (eg, Redis) if you have many settings.
  • Don't replace .env for environment-specific config (like DB credentials)—use this for user-editable application settings.

Basically, just create a model, wrap it in a service, and optionally add a facade and UI. It's simple, reusable, and scales well.

以上是如何在Laravel創(chuàng)建設(shè)置管理系統(tǒng)?的詳細(xì)內(nèi)容。更多資訊請(qǐng)關(guān)注PHP中文網(wǎng)其他相關(guān)文章!

本網(wǎng)站聲明
本文內(nèi)容由網(wǎng)友自願(yuàn)投稿,版權(quán)歸原作者所有。本站不承擔(dān)相應(yīng)的法律責(zé)任。如發(fā)現(xiàn)涉嫌抄襲或侵權(quán)的內(nèi)容,請(qǐng)聯(lián)絡(luò)admin@php.cn

熱AI工具

Undress AI Tool

Undress AI Tool

免費(fèi)脫衣圖片

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅(qū)動(dòng)的應(yīng)用程序,用於創(chuàng)建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Clothoff.io

Clothoff.io

AI脫衣器

Video Face Swap

Video Face Swap

使用我們完全免費(fèi)的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱工具

記事本++7.3.1

記事本++7.3.1

好用且免費(fèi)的程式碼編輯器

SublimeText3漢化版

SublimeText3漢化版

中文版,非常好用

禪工作室 13.0.1

禪工作室 13.0.1

強(qiáng)大的PHP整合開(kāi)發(fā)環(huán)境

Dreamweaver CS6

Dreamweaver CS6

視覺(jué)化網(wǎng)頁(yè)開(kāi)發(fā)工具

SublimeText3 Mac版

SublimeText3 Mac版

神級(jí)程式碼編輯軟體(SublimeText3)

熱門(mén)話(huà)題

Laravel 教程
1597
29
PHP教程
1488
72
與Laravel中的樞軸表合作多對(duì)多關(guān)係 與Laravel中的樞軸表合作多對(duì)多關(guān)係 Jul 07, 2025 am 01:06 AM

toworkeffectivelywithpivottablesinlaravel,firstAccessPivotDatausingwithPivot()orwithTimestamps(),thenupdateentrieswithupdatee XistingPivot(),ManageraliationShipsviadeTach()andsync(),andusecustompivotModelSwhenNeed.1.UseWithPivot()toincludespecificcol

通過(guò)Laravel發(fā)送不同類(lèi)型的通知 通過(guò)Laravel發(fā)送不同類(lèi)型的通知 Jul 06, 2025 am 12:52 AM

laravelProvidesLeanAndFlexibleWayTosendificationsViamultiplipliplipliplikeMail,SMS,In-Appalerts,and-Appalerts,andPushNotifications.youdefineNotificationChannelsinthelsinthevia()MethodofanotificationClass,andimpecificementpecificementpecificementpecificemmethodssliketomail()

了解Laravel的依賴(lài)注入? 了解Laravel的依賴(lài)注入? Jul 05, 2025 am 02:01 AM

依賴(lài)注入在Laravel中通過(guò)服務(wù)容器自動(dòng)處理類(lèi)的依賴(lài)關(guān)係,無(wú)需手動(dòng)new對(duì)象。其核心是構(gòu)造函數(shù)注入和方法注入,如控制器中自動(dòng)傳入Request實(shí)例。 Laravel通過(guò)類(lèi)型提示解析依賴(lài),遞歸創(chuàng)建所需對(duì)象。綁定接口與實(shí)現(xiàn)可通過(guò)服務(wù)提供者使用bind方法,或singleton綁定單例。使用時(shí)需確保類(lèi)型提示、避免構(gòu)造函數(shù)複雜化、謹(jǐn)慎使用上下文綁定,並理解自動(dòng)解析規(guī)則。掌握這些可提升代碼靈活性與維護(hù)性。

優(yōu)化Laravel應(yīng)用程序性能的策略 優(yōu)化Laravel應(yīng)用程序性能的策略 Jul 09, 2025 am 03:00 AM

Laravel性能優(yōu)化可通過(guò)四個(gè)核心方向提升應(yīng)用效率。 1.使用緩存機(jī)制減少重複查詢(xún),通過(guò)Cache::remember()等方法存儲(chǔ)不常變化的數(shù)據(jù),降低數(shù)據(jù)庫(kù)訪問(wèn)頻率;2.從模型到查詢(xún)語(yǔ)句進(jìn)行數(shù)據(jù)庫(kù)優(yōu)化,避免N 1查詢(xún)、指定字段查詢(xún)、添加索引、分頁(yè)處理及讀寫(xiě)分離,減少瓶頸;3.將耗時(shí)操作如郵件發(fā)送、文件導(dǎo)出放入隊(duì)列異步處理,利用Supervisor管理工作者並設(shè)置重試機(jī)制;4.合理使用中間件與服務(wù)提供者,避免複雜邏輯和不必要的初始化代碼,延遲加載服務(wù)以提升啟動(dòng)效率。

管理數(shù)據(jù)庫(kù)狀態(tài)進(jìn)行Laravel測(cè)試 管理數(shù)據(jù)庫(kù)狀態(tài)進(jìn)行Laravel測(cè)試 Jul 13, 2025 am 03:08 AM

在Laravel測(cè)試中管理數(shù)據(jù)庫(kù)狀態(tài)的方法包括使用RefreshDatabase、選擇性播種數(shù)據(jù)、謹(jǐn)慎使用事務(wù)和必要時(shí)手動(dòng)清理。 1.使用RefreshDatabasetrait自動(dòng)遷移數(shù)據(jù)庫(kù)結(jié)構(gòu),確保每次測(cè)試都基於乾淨(jìng)的數(shù)據(jù)庫(kù);2.通過(guò)調(diào)用特定種子填充必要數(shù)據(jù),結(jié)合模型工廠生成動(dòng)態(tài)數(shù)據(jù);3.使用DatabaseTransactionstrait回滾測(cè)試更改,但需注意其局限性;4.在無(wú)法自動(dòng)清理時(shí),手動(dòng)截?cái)啾砘蛑匦虏シN數(shù)據(jù)庫(kù)。這些方法根據(jù)測(cè)試類(lèi)型和環(huán)境靈活選用,以保證測(cè)試的可靠性和效率。

選擇API身份驗(yàn)證的Laravel Sanctum和Passport 選擇API身份驗(yàn)證的Laravel Sanctum和Passport Jul 14, 2025 am 02:35 AM

LaravelSanctum適合簡(jiǎn)單、輕量的API認(rèn)證,如SPA或移動(dòng)應(yīng)用,而Passport適用於需要完整OAuth2功能的場(chǎng)景。 1.Sanctum提供基於令牌的認(rèn)證,適合第一方客戶(hù)端;2.Passport支持授權(quán)碼、客戶(hù)端憑證等複雜流程,適合第三方開(kāi)發(fā)者接入;3.Sanctum安裝配置更簡(jiǎn)單,維護(hù)成本低;4.Passport功能全面但配置複雜,適合需要精細(xì)權(quán)限控制的平臺(tái)。選擇時(shí)應(yīng)根據(jù)項(xiàng)目需求判斷是否需要OAuth2特性。

在Laravel中實(shí)施數(shù)據(jù)庫(kù)交易? 在Laravel中實(shí)施數(shù)據(jù)庫(kù)交易? Jul 08, 2025 am 01:02 AM

Laravel通過(guò)內(nèi)置支持簡(jiǎn)化了數(shù)據(jù)庫(kù)事務(wù)處理。 1.使用DB::transaction()方法可自動(dòng)提交或回滾操作,確保數(shù)據(jù)完整性;2.支持嵌套事務(wù)並通過(guò)保存點(diǎn)實(shí)現(xiàn),但通常建議使用單一事務(wù)包裝以避免複雜性;3.提供手動(dòng)控制方法如beginTransaction()、commit()和rollBack(),適用於需要更靈活處理的場(chǎng)景;4.最佳實(shí)踐包括保持事務(wù)簡(jiǎn)短、僅在必要時(shí)使用、測(cè)試失敗情況並記錄回滾信息。合理選擇事務(wù)管理方式有助於提高應(yīng)用可靠性和性能。

處理Laravel中的HTTP請(qǐng)求和響應(yīng)。 處理Laravel中的HTTP請(qǐng)求和響應(yīng)。 Jul 16, 2025 am 03:21 AM

在Laravel中處理HTTP請(qǐng)求和響應(yīng)的核心在於掌握請(qǐng)求數(shù)據(jù)獲取、響應(yīng)返回和文件上傳。 1.接收請(qǐng)求數(shù)據(jù)可通過(guò)類(lèi)型提示注入Request實(shí)例並使用input()或魔術(shù)方法獲取字段,結(jié)合validate()或表單請(qǐng)求類(lèi)進(jìn)行驗(yàn)證;2.返迴響應(yīng)支持字符串、視圖、JSON、帶狀態(tài)碼和頭部的響應(yīng)及重定向操作;3.處理文件上傳時(shí)需使用file()方法並結(jié)合store()存儲(chǔ)文件,上傳前應(yīng)驗(yàn)證文件類(lèi)型和大小,存儲(chǔ)路徑可保存至數(shù)據(jù)庫(kù)。

See all articles