@extends('layouts.master') @section('title', 'Alle boetes') @section('content')

Alle Boetes

@auth @if (auth()->user()->role >= 2) @endif @endauth @foreach($fines as $fine) {{-- @php dd($fine) @endphp --}} @auth @if (auth()->user()->role >= 2) @endif @endauth @endforeach
Speler Datum Omschrijving Bedrag BetaaldActie betaald slider
{{ $fine->player->name }} {{ \Carbon\Carbon::parse($fine->date)->format('d-m-Y') }} {{ $fine->fineType ? $fine->fineType->description : '-' }} €{{ $fine->fineType ? number_format($fine->fineType->amount, 2, ',', '.') : '-' }} {{ $fine->paid ? '✅' : '❌' }} Bewerk
@csrf
@endsection