Download the PHP package delgont/core without Composer
On this page you can find all versions of the php package delgont/core. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Vendor delgont
Package core
Short Description Delgont Core Functionality
License MIT
Homepage https://github.com/delgont/core
Package core
Short Description Delgont Core Functionality
License MIT
Homepage https://github.com/delgont/core
Keywords Laravel who are you
Please rate this library. Is it a good library?
Informations about the package core
Laravel Delgont Core
Key features
Model options - store model properties in a key value way.
Requirements
Composer
Laravel Framework 6.0+
--
Store Model Properties In a Key Value Way
If you want to store model properties in a key-value way in Laravel
⚙️ System Settings Manager - Using the Option
Model
This document explains how to manage system settings using the Option
model in your Laravel app.
🧠 What This Does
The Option
model allows you to:
- Save and retrieve individual settings.
- Save and retrieve groups of settings (e.g.,
accounting_settings
,email_settings
). - Manage system configuration in a centralized and dynamic way.
📥 Setting a Single Option
Use the static setOption()
method to store or update a single key-value pair under a specific group.
use Delgont\Core\Entities\Option;
// Set the accounting method
Option::setOption('accounting_method', 'cash', 'accounting_settings');
// Set site email
Option::setOption('support_email', '[email protected]', 'email_settings');
All versions of core with dependencies
PHP Build Version
Package Version
The package delgont/core contains the following files
Loading the files please wait ....