MIF_E31230356/resources/views/admin/materi/history.blade.php

213 lines
6.8 KiB
PHP

@extends('guru.layouts.app')
@section('title', 'History Materi')
@push('styles')
<style>
.page-title {
font-size: 22px;
font-weight: 800;
margin-bottom: 6px;
margin-top: -20px;
display: flex;
align-items: center;
gap: 8px;
flex-wrap: wrap;
}
.back-link {
display: inline-flex;
align-items: center;
gap: 8px;
color: #2b8ef3;
font-weight: 600;
font-size: 14px;
text-decoration: none;
margin-bottom: 20px;
}
.back-link:hover { text-decoration: underline; }
.custom-card {
background: white;
border-radius: 20px;
border: 2px solid #e5e5e5;
padding: 20px;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
.table-header { background: #a5e6ba; }
.mapel-badge {
display: inline-block;
background: #e6f0ff;
color: #1d4ed8;
font-size: 12px;
font-weight: 600;
padding: 3px 10px;
border-radius: 99px;
white-space: nowrap;
}
.kelas-badge {
display: inline-block;
background: #f0fdf4;
color: #166534;
font-size: 12px;
font-weight: 600;
padding: 3px 10px;
border-radius: 99px;
white-space: nowrap;
}
.btn-unduh {
background: #e6f0ff;
color: #2b8ef3;
border: none;
border-radius: 8px;
padding: 5px 12px;
font-size: 13px;
font-weight: 600;
text-decoration: none;
transition: background 0.2s;
display: inline-flex;
align-items: center;
gap: 5px;
white-space: nowrap;
}
.btn-unduh:hover { background: #bfdbfe; color: #1d4ed8; }
.alert-success-custom {
background: #dcfce7;
color: #166534;
border-radius: 10px;
padding: 12px 16px;
margin-bottom: 16px;
font-weight: 500;
font-size: 14px;
display: flex;
align-items: center;
gap: 8px;
flex-wrap: wrap;
}
.empty-state {
text-align: center;
padding: 50px 20px;
color: #94a3b8;
}
.table {
min-width: 600px;
}
@media (max-width: 576px) {
.page-title { font-size: 18px; margin-top: 0; }
.custom-card { padding: 12px; border-radius: 14px; }
}
</style>
@endpush
@section('content')
<a href="{{ route('guru.mapel.index') }}" class="back-link"> Kembali ke Mata Pelajaran</a>
<h3 class="page-title">
<img src="{{ asset('images/icon/gurud/file.png') }}" class="icon-inline" alt="Ikon file">
HISTORY MATERI
</h3>
@if(session('success'))
<div class="alert-success-custom">
<img src="{{ asset('images/icon/gurud/v.png') }}" class="icon-inline" alt="Berhasil">
{{ session('success') }}
</div>
@endif
<div class="custom-card">
@if($materiList->isEmpty())
<div class="empty-state">
<div style="margin-bottom:12px">
<img src="{{ asset('images/icon/gurud/mailbox.png') }}" class="icon-lg" alt="Belum ada materi">
</div>
<p>Belum ada materi yang diupload.</p>
</div>
@else
<table class="table align-middle">
<thead class="table-header text-center">
<tr>
<th>No</th>
<th>Judul Materi</th>
<th>Mata Pelajaran</th>
<th>Kelas</th>
<th>Tanggal Upload</th>
<th>File</th>
</tr>
</thead>
<tbody>
@foreach($materiList as $i => $materi)
<tr>
<td class="text-center">{{ $materiList->firstItem() + $i }}</td>
<td>
<div style="font-weight:600;color:#1e293b;word-break:break-word;max-width:180px;">{{ $materi->judul_materi }}</div>
@if($materi->deskripsi)
<div style="font-size:12px;color:#94a3b8;margin-top:2px">
{{ Str::limit($materi->deskripsi, 60) }}
</div>
@endif
</td>
<td class="text-center">
<span class="mapel-badge">
{{ optional(optional($materi->mengajar)->mapel)->nama_mapel ?? '-' }}
</span>
</td>
<td class="text-center">
<span class="kelas-badge">
{{ optional(optional($materi->mengajar)->kelas)->tingkat }}
{{ optional(optional($materi->mengajar)->kelas)->nama_kelas ?? '-' }}
</span>
</td>
<td class="text-center" style="font-size:13px;color:#64748b;white-space:nowrap;">
{{ \Carbon\Carbon::parse($materi->tanggal_upload)->format('d M Y, H:i') }}
</td>
<td class="text-center">
@if($materi->lampiran_materi)
@php
$ext = strtolower(pathinfo($materi->lampiran_materi, PATHINFO_EXTENSION));
$iconSrc = match(true) {
in_array($ext, ['pdf']) => asset('images/icon/gurud/file2.png'),
in_array($ext, ['doc','docx']) => asset('images/icon/gurud/buku1.png'),
in_array($ext, ['ppt','pptx']) => asset('images/icon/gurud/lb.png'),
in_array($ext, ['jpg','jpeg','png']) => asset('images/icon/gurud/image.png'),
default => asset('images/icon/gurud/link.png'),
};
$iconAlt = match(true) {
in_array($ext, ['pdf']) => 'File PDF',
in_array($ext, ['doc','docx']) => 'File Word',
in_array($ext, ['ppt','pptx']) => 'File PowerPoint',
in_array($ext, ['jpg','jpeg','png']) => 'File gambar',
default => 'File lampiran',
};
@endphp
<a href="{{ url('storage/app/public/' . $materi->lampiran_materi) }}"
target="_blank" class="btn-unduh">
<img src="{{ $iconSrc }}" class="icon-inline" alt="{{ $iconAlt }}"> Unduh
</a>
@else
<span style="font-size:12px;color:#94a3b8">Tidak ada file</span>
@endif
</td>
</tr>
@endforeach
</tbody>
</table>
<div class="d-flex justify-content-end mt-3">
{{ $materiList->links() }}
</div>
@endif
</div>
@endsection