@extends('admin.layout') @section('title', 'Follows & Blocks') @section('content') {{-- Search + tabs --}}
Reset
{{-- Tab switcher --}}
@foreach (['follows' => 'Follows (' . $follows->total() . ')', 'blocks' => 'Blokkeringen (' . $blocks->total() . ')'] as $key => $label) {{ $label }} @endforeach
{{-- Follows tab --}} @if ($tab === 'follows')
@forelse ($follows as $follow) @empty @endforelse
Volger Gevolgde Datum
@if ($follow->follower) #{{ $follow->follower->id }} {{ $follow->follower->name }}

{{ $follow->follower->email }}

@else Verwijderd @endif
@if ($follow->following) #{{ $follow->following->id }} {{ $follow->following->name }}

{{ $follow->following->email }}

@else Verwijderd @endif
{{ $follow->created_at->format('d/m/Y H:i') }}
Geen follows gevonden.
@if ($follows->hasPages())
{{ $follows->links() }}
@endif
@endif {{-- Blocks tab --}} @if ($tab === 'blocks')
@forelse ($blocks as $block) @empty @endforelse
Blokkeerder Geblokkeerde Datum
@if ($block->blocker) #{{ $block->blocker->id }} {{ $block->blocker->name }}

{{ $block->blocker->email }}

@else Verwijderd @endif
@if ($block->blocked) #{{ $block->blocked->id }} {{ $block->blocked->name }}

{{ $block->blocked->email }}

@else Verwijderd @endif
{{ $block->created_at->format('d/m/Y H:i') }}
Geen blokkeringen gevonden.
@if ($blocks->hasPages())
{{ $blocks->links() }}
@endif
@endif @endsection