| Current Path : /var/www/html/dev/reddsis-dev/app/Models/Backend/ |
| Current File : /var/www/html/dev/reddsis-dev/app/Models/Backend/VisitorSetting.php |
<?php
namespace App\Models\Backend;
use Illuminate\Database\Eloquent\Attributes\Fillable;
use Illuminate\Database\Eloquent\Attributes\Table;
use Illuminate\Database\Eloquent\Model;
#[Table('visitor_settings')]
#[Fillable(['is_active'])]
class VisitorSetting extends Model
{
protected function casts(): array
{
return [
'is_active' => 'boolean',
];
}
}