Files
pos_heidiver/app/Models/Setting.php
T
2026-01-06 15:35:59 -05:00

35 lines
628 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Setting extends Model
{
use HasFactory;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'logo',
'description',
'primary_color',
'secondary_color',
];
/**
* The attributes that should be cast to native types.
*
* @var array
*/
protected $casts = [
'id' => 'integer',
'created_at' => 'timestamp',
'updated_at' => 'timestamp',
];
}