@if (isset($verifiedSightings) && $verifiedSightings->isNotEmpty())

{{ __('messages.verified_sightings_title') }}

{{ __('messages.verified_sightings_subtitle') }}

@foreach ($verifiedSightings as $sighting)
{{ __('messages.sighting_status_verified') }} {{ $sighting->sighted_at?->format('Y-m-d H:i') ?: ($sighting->created_at?->format('Y-m-d H:i') ?? '-') }}

{{ __('messages.sighting_location') }}

{{ $sighting->sighting_location ?: '-' }}

{{ __('messages.report_note') }}

{{ $sighting->report_note }}

@endforeach
@endif