@extends('dashboard.base') @section('content')

Purchased Standards

@if($purchasedStandards->isEmpty())

You have not purchased any standards yet.

@else
@foreach($purchasedStandards as $standard)
{{ $standard->standard_title }}

Code: {{ $standard->standard_code }}

Amount Paid: MWK {{ number_format($standard->amount, 2) }}

Purchased On: {{ $standard->created_at }}

@endforeach
@endif
@endsection