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

Participants for Journey: {{ $journey->title }}

Participants for Journey: {{ $journey->title }}
@foreach($journey->participants as $index => $participant) @endforeach
Sl No QR Code Profile Image Full Name User Name Email Country Joined On Action
{{ $index + 1 }} @if($participant->qr_code) QR Code @else No QR @endif @if($participant->profile_picture) QR Code @else Placeholder Image @endif {{ $participant->first_name }} {{ $participant->last_name }} {{ $participant->username?? 'NA' }} {{ $participant->email }} {{ $participant->country->name}} {{ $participant->created_at->format('d M, Y') }}
Back
@endsection @section('script') @endsection