| Current Path : /home/zada/public_html/app/Models/ |
| Current File : /home/zada/public_html/app/Models/CustomAlert.php |
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use App\Traits\PreventDemoModeChanges;
class CustomAlert extends Model
{
use HasFactory, PreventDemoModeChanges;
protected $guarded = ['id'];
protected $fillable = [
'status', 'type', 'banner', 'link', 'description', 'background_color', 'text_color', 'auto_hide'
];
}