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

Mijn boetes

@if($fines->isEmpty())

Je hebt geen boetes.

@else
@foreach($fines as $fine) @endforeach
Omschrijving Bedrag Status Betalen
{{ $fine->fineType?->description ?? '-' }} @php $amount = $fine->fineType?->amount; @endphp {{ $amount !== null ? '€'.number_format($amount, 2, ',', '.') : '-' }} {!! $fine->paid ? '✅ Betaald' : '❌ Open' !!} @php $url = $fine->fineType?->paymentLink?->url; @endphp @if(!$fine->paid && $url) Betalen @else - @endif
@endif
@endsection