Collection::class]); mount(function () { $this->participants = Participant::all(); }); $runMatch = function () { $matcher = app(MatcherService::class); $matcher->match(); session()->flash('match-message',"Done"); $this->participants = Participant::all(); }; ?>

All Participants Data

Displaying all records from the `participants` table.

@if (session()->has('match-message')) @endif @if($participants->isEmpty())
No records
@else
@foreach($participants as $participant) @endforeach
ID User ID Giving To (ID) Prompt Submission URL Desperate? Token (ULID)
{{ $participant->id }} {{ $participant->user_id }} {{ $participant->giving_id ?? 'N/A' }} {{ Str::limit($participant->prompt, 50) }} @if($participant->submission_url) View Link @else N/A @endif {{ $participant->desperate ? 'YES' : 'No' }} {{ Str::limit($participant->token, 15, '...') }}
@endif