project-ta/.history/resources/views/user/iuran/index.blade_20260408171243.php

28 lines
578 B
PHP

@extends('layouts.app')
@section('content')
<h3>Data Iuran Saya</h3>
<table class="table">
<tr>
<th>Bulan</th>
<th>Jumlah</th>
<th>Status</th>
<th>Aksi</th>
</tr>
@foreach($iuran as $i)
<tr>
<td>{{ $i->bulan }}</td>
<td>Rp {{ number_format($i->jumlah) }}</td>
<td>{{ $i->status }}</td>
<td>
<a href="{{ route('user.iuran.upload', $i->id) }}" class="btn btn-primary btn-sm">
Upload
</a>
</td>
</tr>
@endforeach
</table>
@endsection