Deploy Ladill Mini / deploy (push) Successful in 23s
Staff-facing counter register at pos.ladill.com with catalog cart, cash and MoMo/card checkout via Ladill Pay, CRM timeline/import, invoice prefill, and Merchant catalog import. Co-authored-by: Cursor <cursoragent@cursor.com>
28 lines
463 B
PHP
28 lines
463 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class PlatformSetting extends Model
|
|
{
|
|
protected $connection = 'platform';
|
|
|
|
protected $fillable = [
|
|
'group',
|
|
'key',
|
|
'label',
|
|
'description',
|
|
'type',
|
|
'value',
|
|
'is_secret',
|
|
'is_active',
|
|
];
|
|
|
|
protected $casts = [
|
|
'value' => 'array',
|
|
'is_secret' => 'boolean',
|
|
'is_active' => 'boolean',
|
|
];
|
|
}
|