@extends('layouts.app') @section('title', 'Weather Alert Notification Preferences') @section('header')

๐Ÿ”” Notification Preferences

Configure your weather alert settings and preferences

@endsection @section('content')
@if (session('success'))
โœ… {{ session('success') }}
@endif @if (session('error'))
โŒ {{ session('error') }}
@endif @if ($errors->any())
โš ๏ธ Please fix the following errors:
@endif
@csrf @method('PUT')

๐ŸŒก๏ธ Weather Alert Types Choose which weather events trigger notifications

frost_alerts ? 'checked' : '' }} class="h-5 w-5 text-blue-600 rounded border-gray-300 focus:ring-blue-500">
freeze_alerts ? 'checked' : '' }} class="h-5 w-5 text-blue-600 rounded border-gray-300 focus:ring-blue-500">
extreme_weather_alerts ? 'checked' : '' }} class="h-5 w-5 text-blue-600 rounded border-gray-300 focus:ring-blue-500">
wind_alerts ? 'checked' : '' }} class="h-5 w-5 text-blue-600 rounded border-gray-300 focus:ring-blue-500">
rain_alerts ? 'checked' : '' }} class="h-5 w-5 text-blue-600 rounded border-gray-300 focus:ring-blue-500">
general_alerts ? 'checked' : '' }} class="h-5 w-5 text-blue-600 rounded border-gray-300 focus:ring-blue-500">

๐Ÿ“ฑ Notification Channels How you want to receive alerts

email_alerts ? 'checked' : '' }} class="h-5 w-5 text-blue-600 rounded border-gray-300 focus:ring-blue-500">
in_app_alerts ? 'checked' : '' }} class="h-5 w-5 text-blue-600 rounded border-gray-300 focus:ring-blue-500">
sms_alerts ? 'checked' : '' }} class="h-5 w-5 text-blue-600 rounded border-gray-300 focus:ring-blue-500">

โฐ Alert Timing & Control When and how often to send alerts

quiet_hours_enabled ? 'checked' : '' }} class="h-5 w-5 text-blue-600 rounded border-gray-300 focus:ring-blue-500" onchange="toggleQuietHours(this)">

Minimum time between similar alerts

Maximum alerts per day

Geographic range for alerts

duplicate_suppression ? 'checked' : '' }} class="h-5 w-5 text-blue-600 rounded border-gray-300 focus:ring-blue-500">
urgent_override_quiet_hours ? 'checked' : '' }} class="h-5 w-5 text-blue-600 rounded border-gray-300 focus:ring-blue-500">
weekend_alerts ? 'checked' : '' }} class="h-5 w-5 text-blue-600 rounded border-gray-300 focus:ring-blue-500">

๐ŸŽฏ Custom Alert Thresholds Override default warning temperatures and conditions

Default: 36ยฐF

Default: 95ยฐF

Default: 30 mph

Default: 1.0 in/hr

๐Ÿ“„ Notification Content Customize what information is included in alerts

show_recommendations ? 'checked' : '' }} class="h-5 w-5 text-blue-600 rounded border-gray-300 focus:ring-blue-500">
show_plant_impacts ? 'checked' : '' }} class="h-5 w-5 text-blue-600 rounded border-gray-300 focus:ring-blue-500">
detailed_notifications ? 'checked' : '' }} class="h-5 w-5 text-blue-600 rounded border-gray-300 focus:ring-blue-500">

โš ๏ธ Alert Severity Levels Choose which severity levels to receive

severity_levels ?? ['severe', 'moderate']) ? 'checked' : '' }} class="h-5 w-5 text-red-600 rounded border-gray-300 focus:ring-red-500">
severity_levels ?? ['severe', 'moderate']) ? 'checked' : '' }} class="h-5 w-5 text-orange-600 rounded border-gray-300 focus:ring-orange-500">
severity_levels ?? []) ? 'checked' : '' }} class="h-5 w-5 text-yellow-600 rounded border-gray-300 focus:ring-yellow-500">
๐Ÿ“ค Export Settings
@endsection