VPS and dedicated server ordering, managed panels, SSO, billing, and launcher integration — forked from hosting infrastructure with server-focused routes and dashboard. Co-authored-by: Cursor <cursoragent@cursor.com>
14 lines
315 B
PHP
14 lines
315 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/** Per-account hosting preferences (notifications, product updates). */
|
|
class HostingSetting extends Model
|
|
{
|
|
protected $fillable = ['user_id', 'notify_email', 'product_updates'];
|
|
|
|
protected $casts = ['product_updates' => 'boolean'];
|
|
}
|