Files
2025-04-24 08:51:18 +08:00

101 lines
3.9 KiB
PHP

<div class="container">
<div class="row">
<div class="col-md-12">
@foreach ($positions as $position)
<h5>{{ $position->name }}</h5>
<div class="table-responsive">
<table class="table table-striped table-condensed">
<thead>
<tr>
<th width="20%">No. Anggota</th>
<th width="30%">Nama</th>
<th width="15%">Unit</th>
<th width="10%">Undian</th>
<th width="15%">Peratus (%)</th>
</tr>
</thead>
<tbody>
@foreach ($results as $result)
@if ($result->position_id == $position->id)
<tr>
<td>{{ $result->nominee->no_anggota }}</td>
<td>{{ $result->nominee->name }}</td>
<td>{{ $result->nominee->unit }}</td>
{{-- <td>{{ $result->votes}}</td> --}}
<td>{{ $result->votes($result->nominee->id) }}</td>
<td>{{ ($result->votes($result->nominee->id) / $total_votes) * 100 }} %</td>
</tr>
@endif
@endforeach
@foreach ($no_votes as $no_vote)
@if ($no_vote->position_id == $position->id)
<tr>
<td>{{ $no_vote->no_anggota }}</td>
<td>{{ $no_vote->name }}</td>
<td>{{ $no_vote->unit }}</td>
<td>0</td>
<td>0</td>
</tr>
@endif
@endforeach
<tr>
<td colspan="3"><b>Jumlah Undian</b></td>
<td><b>{{ $total_votes }}</b></td>
</tr>
</tbody>
</table>
</div>
<hr />
@endforeach
</div>
</div>
</div>
<!-- Verified By column -->
<div class="container">
<div class="signature-section row">
<div class="col-md-12">
<div class="table-responsive">
<table style="width: 100%;">
<tbody>
<tr>
<td style="width: 50%;"><b>Disemak oleh :</b></td>
<td style="width: 50%;"><b>Disahkan oleh :</b></td>
</tr>
<tr>
<td><br><br><b>...................................</b></td>
<td><br><br><b>...................................</b></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<style>
/* Style for table body */
.signature-section td {
padding-top: 20px;
vertical-align: bottom;
text-align: center;
}
.table tbody td {
border-bottom: 1px solid #ddd;
padding: 8px;
}
/* Add space between specific columns */
.table tbody td:nth-child(3),
/* Unit column */
.table tbody td:nth-child(4),
/* Undian column */
.table tbody td:nth-child(5) {
/* Peratus (%) column */
padding-right: 20px;
/* Adjust this value as needed */
}
</style>