@extends('layouts.app') @section('content')

🔔 Job Alerts

Set up alerts to be notified about jobs matching your preferences

@if($message = session('success'))

{{ $message }}

@endif

Create New Alert

@csrf

Your Alerts ({{ $alerts->count() }})

@if($alerts->count() > 0)
@foreach($alerts as $alert)

@if($alert->keyword) "{{ $alert->keyword }}" @elseif($alert->specialty) {{ $alert->specialty }} @elseif($alert->country) {{ $alert->country }} @else All Jobs @endif

{{ $alert->frequency === 'never' ? 'Manual' : ucfirst($alert->frequency) }}

@if($alert->is_active) Active @else Inactive @endif
@csrf
@csrf @method('DELETE')
@endforeach
@else

No alerts yet. Create one to get started!

@endif
@endsection