{{-- Shouts Tab --}}
@php $pendingShouts = $this->getPendingShouts(); @endphp @php $reportedShouts = $this->getReportedShouts(); @endphp @if($pendingShouts->count() > 0)

Wachtend op goedkeuring

@foreach($pendingShouts as $shout)

{{ $shout->user?->username ?? 'Onbekend' }}

{{ $shout->message }}

{{ $shout->created_at->diffForHumans() }}

Goedkeuren Verwijderen
@endforeach {{ $pendingShouts->links() }}
@endif @if($reportedShouts->count() > 0)

Gerapporteerde shouts

@foreach($reportedShouts as $shout)

{{ $shout->user?->username ?? 'Onbekend' }}

{{ $shout->message }}

{{ $shout->created_at->diffForHumans() }}

Negeren Verwijderen
@endforeach {{ $reportedShouts->links() }}
@endif @if($pendingShouts->count() === 0 && $reportedShouts->count() === 0)

Geen shouts wachtend op moderatie

@endif
{{-- Song Requests Tab --}}
@php $requests = $this->getPendingRequests(); @endphp @if($requests->count() > 0)
@foreach($requests as $request)

{{ $request->user?->username ?? 'Onbekend' }}

{{ $request->song_title }}

@if($request->song_artist)

{{ $request->song_artist }}

@endif
{{ $request->submitted_at->diffForHumans() }} {{ $request->votes }} stemmen
Goedkeuren Afwijzen
@endforeach {{ $requests->links() }}
@else

Geen verzoeken wachtend op goedkeuring

@endif
{{-- Applications Tab --}}
@php $applications = $this->getPendingApplications(); @endphp @if($applications->count() > 0)
@foreach($applications as $app)

{{ $app->user?->username ?? 'Onbekend' }}

{{ $app->rank?->name ?? 'Geen functie' }} · {{ $app->age }} jaar

{{ $app->motivation }}

@if($app->experience)

Ervaring: {{ $app->experience }}

@endif

{{ $app->created_at->diffForHumans() }}

Goedkeuren Afwijzen
@endforeach {{ $applications->links() }}
@else

Geen aanmeldingen wachtend

@endif