@@ -59,8 +69,9 @@
NIS |
Asal Daerah |
Tahun Angkatan |
- Capaian Hadis |
- Capaian Al Qur'an |
+ Persentase Hadis |
+ Persentase Qur'an |
+ Akumulasi Qur'an & Hadis |
Status Aktual |
Status Prediksi |
@@ -71,10 +82,20 @@
{{ $item->nama }} |
{{ $item->jenis_kelamin }} |
{{ $item->nis }} |
- {{ $item->asal_daerah }} |
+
+ @if ($item->asal_daerah === 'dalamProvinsi')
+ Dalam Provinsi
+ @elseif ($item->asal_daerah === 'luarProvinsi')
+ Luar Provinsi
+ @else
+ {{ $item->asal_daerah }}
+ @endif
+ |
{{ $item->tahun_angkatan }} |
{{ number_format(($item->alhadis / 1997) * 100, 2) }}% |
{{ number_format(($item->alquran / 606) * 100, 2) }}% |
+ {{ number_format(((($item->alhadis / 1997) * 100) + (($item->alquran / 606) *
+ 100)) / 2, 2) }}% |
{{ $item->status }} |
@if ($item->predicted_status == 'Tercapai')
@@ -98,14 +119,12 @@
-
-
@@ -176,20 +190,6 @@
background-color: #f8f9fa !important;
color: #012970;
}
-
- .dt-buttons {
- margin-bottom: 10px;
- }
-
- .dt-buttons .btn {
- margin-right: 5px;
- }
-
- .form-select,
- .form-control {
- display: inline-block;
- width: auto;
- }
@endsection
\ No newline at end of file
diff --git a/resources/views/pages/admin/exam-data.blade.php b/resources/views/pages/admin/exam-data.blade.php
index 9346df8..5b502aa 100644
--- a/resources/views/pages/admin/exam-data.blade.php
+++ b/resources/views/pages/admin/exam-data.blade.php
@@ -327,7 +327,13 @@ class="bx bxs-user-badge me-2"> Jenis
| {{ $item->nama }} |
{{ $item->jenis_kelamin }} |
{{ $item->nis }} |
- {{ $item->asal_daerah }} |
+ @if ($item->asal_daerah === 'dalamProvinsi')
+ Dalam Provinsi
+ @elseif ($item->asal_daerah === 'luarProvinsi')
+ Luar Provinsi
+ @else
+ {{ $item->asal_daerah }}
+ @endif |
{{ $item->tahun_angkatan }} |
{{ $item->alhadis }} |
{{ $item->alquran }} |