@extends('layouts.master') @section('title', 'Mijn boetes') @section('content')
Je hebt geen boetes.
@else| 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 |