@extends('layouts.master') @section('title', 'Alle boetes') @section('content')
| Speler | Datum | Omschrijving | Bedrag | Betaald | @auth @if (auth()->user()->role >= 2)Actie | betaald slider | @endif @endauth
|---|---|---|---|---|---|---|
| {{ $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 ? '✅' : '❌' }} | @auth @if (auth()->user()->role >= 2)Bewerk | @endif @endauth |