MIF_E31230892/sim-pkpps/storage/framework/views/6aa14f1db90c01f76f48db15179...

189 lines
8.2 KiB
PHP

<?php $__env->startSection('title', 'Detail Santri: ' . $santri->nama_lengkap); ?>
<?php $__env->startSection('content'); ?>
<div class="page-header">
<h2><i class="fas fa-user"></i> Detail Santri</h2>
</div>
<div class="content-box">
<div class="detail-header">
<div style="display: flex; align-items: center; gap: 20px;">
<?php if($santri->foto): ?>
<img src="<?php echo e(asset('storage/' . $santri->foto)); ?>"
alt="Foto <?php echo e($santri->nama_lengkap); ?>"
style="width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid var(--primary-color); flex-shrink: 0;"
loading="lazy">
<?php else: ?>
<div style="width: 80px; height: 80px; border-radius: 50%; background: var(--primary-color); display: flex; align-items: center; justify-content: center; color: white; font-size: 2rem; font-weight: bold; flex-shrink: 0;">
<?php echo e(strtoupper(substr($santri->nama_lengkap, 0, 1))); ?>
</div>
<?php endif; ?>
<div>
<h3><?php echo e($santri->nama_lengkap); ?></h3>
<p style="color: #7F8C8D; margin: 5px 0 0 0;">
<i class="fas fa-id-badge"></i> <?php echo e($santri->id_santri); ?>
<?php if($santri->nis): ?>
| <i class="fas fa-barcode"></i> NIS: <?php echo e($santri->nis); ?>
<?php endif; ?>
</p>
</div>
</div>
<div style="display: flex; gap: 10px;">
<a href="<?php echo e(route('admin.santri.edit', $santri)); ?>" class="btn btn-warning">
<i class="fas fa-edit"></i> Edit
</a>
<a href="<?php echo e(route('admin.santri.index')); ?>" class="btn btn-secondary">
<i class="fas fa-arrow-left"></i> Kembali
</a>
</div>
</div>
<hr style="border: none; border-top: 2px solid #E8F7F2; margin: 25px 0;">
<div class="detail-section">
<h4><i class="fas fa-id-card"></i> Informasi Dasar</h4>
<table class="detail-table">
<tr>
<th width="200">ID Santri</th>
<td><strong><?php echo e($santri->id_santri); ?></strong></td>
</tr>
<tr>
<th>NIS</th>
<td><?php echo e($santri->nis ?? '-'); ?></td>
</tr>
<tr>
<th>Nama Lengkap</th>
<td><strong><?php echo e($santri->nama_lengkap); ?></strong></td>
</tr>
<tr>
<th>Jenis Kelamin</th>
<td>
<?php if($santri->jenis_kelamin == 'Laki-laki'): ?>
<i class="fas fa-mars" style="color: #81C6E8;"></i> <?php echo e($santri->jenis_kelamin); ?>
<?php else: ?>
<i class="fas fa-venus" style="color: #FF8B94;"></i> <?php echo e($santri->jenis_kelamin); ?>
<?php endif; ?>
</td>
</tr>
<tr>
<th>Kelas</th>
<td>
<strong style="color: #6FBA9D; font-size: 1.1rem;"><?php echo e($santri->kelas); ?></strong>
<?php if($santri->kelas == 'PB'): ?>
<span style="color: #7F8C8D; font-size: 0.85rem;">(Pembinaan)</span>
<?php endif; ?>
</td>
</tr>
<tr>
<th>Status</th>
<td>
<?php if($santri->status == 'Aktif'): ?>
<span style="padding: 6px 12px; border-radius: 6px; font-size: 0.85rem; font-weight: 600; background: linear-gradient(135deg, #E8F7F2 0%, #D4F1E3 100%); color: #2C5F4F; display: inline-block;">
<i class="fas fa-check-circle"></i> <?php echo e($santri->status); ?>
</span>
<?php elseif($santri->status == 'Lulus'): ?>
<span style="padding: 6px 12px; border-radius: 6px; font-size: 0.85rem; font-weight: 600; background: linear-gradient(135deg, #E3F2FD 0%, #D1E9F9 100%); color: #2D4A7C; display: inline-block;">
<i class="fas fa-graduation-cap"></i> <?php echo e($santri->status); ?>
</span>
<?php else: ?>
<span style="padding: 6px 12px; border-radius: 6px; font-size: 0.85rem; font-weight: 600; background: linear-gradient(135deg, #E8ECF0 0%, #D1D8E0 100%); color: #555; display: inline-block;">
<i class="fas fa-times-circle"></i> <?php echo e($santri->status); ?>
</span>
<?php endif; ?>
</td>
</tr>
</table>
</div>
<div class="detail-section">
<h4><i class="fas fa-map-marker-alt"></i> Alamat & Asal</h4>
<table class="detail-table">
<tr>
<th width="200">Alamat Santri</th>
<td><?php echo e($santri->alamat_santri ?? '-'); ?></td>
</tr>
<tr>
<th>Daerah Asal</th>
<td>
<?php if($santri->daerah_asal): ?>
<i class="fas fa-map-pin" style="color: #6FBA9D;"></i> <?php echo e($santri->daerah_asal); ?>
<?php else: ?>
-
<?php endif; ?>
</td>
</tr>
</table>
</div>
<div class="detail-section">
<h4><i class="fas fa-users"></i> Data Orang Tua / Wali</h4>
<table class="detail-table">
<tr>
<th width="200">Nama Orang Tua</th>
<td><?php echo e($santri->nama_orang_tua ?? '-'); ?></td>
</tr>
<tr>
<th>Nomor HP Orang Tua</th>
<td>
<?php if($santri->nomor_hp_ortu): ?>
<i class="fas fa-phone" style="color: #6FBA9D;"></i>
<a href="tel:<?php echo e($santri->nomor_hp_ortu); ?>" style="color: #6FBA9D; text-decoration: none;">
<?php echo e($santri->nomor_hp_ortu); ?>
</a>
<?php else: ?>
-
<?php endif; ?>
</td>
</tr>
</table>
</div>
<div class="detail-section">
<h4><i class="fas fa-clock"></i> Informasi Sistem</h4>
<table class="detail-table">
<tr>
<th width="200">Tanggal Dibuat</th>
<td>
<i class="fas fa-calendar-plus" style="color: #81C6E8;"></i>
<?php echo e($santri->created_at->format('d M Y, H:i')); ?> WIB
<span style="color: #7F8C8D; font-size: 0.85rem;">
(<?php echo e($santri->created_at->diffForHumans()); ?>)
</span>
</td>
</tr>
<tr>
<th>Terakhir Diupdate</th>
<td>
<i class="fas fa-calendar-check" style="color: #FFD56B;"></i>
<?php echo e($santri->updated_at->format('d M Y, H:i')); ?> WIB
<span style="color: #7F8C8D; font-size: 0.85rem;">
(<?php echo e($santri->updated_at->diffForHumans()); ?>)
</span>
</td>
</tr>
</table>
</div>
<div style="margin-top: 30px; padding: 20px; background: linear-gradient(135deg, #F8FBF9 0%, #E8F7F2 100%); border-radius: 8px; border-left: 4px solid #6FBA9D;">
<p style="margin: 0; color: #2C5F4F; font-size: 0.9rem;">
<i class="fas fa-info-circle"></i>
<strong>Informasi:</strong> Data santri ini dapat diedit atau dihapus melalui halaman index atau menggunakan tombol Edit di atas.
</p>
</div>
</div>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.app', ['isAdmin' => true], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH C:\xampp\htdocs\TugasAkhir\sim-pkpps\resources\views/admin/santri/show.blade.php ENDPATH**/ ?>