@extends('layouts.master') @section('title', 'Boetes per speler') @section('content')

Boetes per Speler

@foreach($players as $player)

@if($player->fines->count())
@auth @if (auth()->user()->role >= 2) @endif @endauth @foreach($player->fines as $fine) @auth @if (auth()->user()->role >= 2) @endif @endauth @endforeach
Datum Omschrijving Bedrag BetaaldActie
{{ \Carbon\Carbon::parse($fine->date)->format('d-m-Y') }} {{ $fine->fineType->description }} €{{ number_format($fine->fineType->payment->amount, 2, ',', '.') }}
@csrf
Bewerk
@else

Geen boetes.

@endif
@endforeach
@endsection