Files
spota-dev/rebuild/resources/views/dosen/pages/daftar-usulan.blade.php
Power BI Dev dab8ea396b Deploy Laravel rebuild via Coolify
Point Docker and Coolify compose to the Laravel rebuild app so mahasiswa, dosen, and admin flows are served from the new Laravel public entrypoint.
2026-05-03 18:50:29 +07:00

27 lines
1.7 KiB
PHP

<x-dosen.partials.page-shell :title="$title" :sidebar="$sidebar" :page-title="$pageTitle" :page-description="$pageDescription" :page-date="$pageDate" :user="$user">
<section class="rounded-xl border border-[#E5E7EB] bg-white p-6 shadow-[0_8px_12px_rgba(13,10,44,0.04)]">
<div class="space-y-4">
@forelse ($usulan as $item)
<article class="rounded-xl border border-[#E5E7EB] bg-[#F9FAFB] p-5">
<div class="flex flex-wrap items-start justify-between gap-4">
<div>
<h3 class="text-lg font-semibold text-[#15171A]">{{ $item['judul'] }}</h3>
<p class="mt-2 text-sm text-[#4B5563]">{{ $item['mahasiswa'] }}</p>
<p class="mt-2 text-sm text-[#6B7280]">{{ $item['periode'] }} · {{ $item['tanggal'] }}</p>
<div class="mt-4 flex flex-wrap gap-2">
<a href="{{ $item['reviewHref'] }}" class="rounded-md bg-[#15171A] px-3 py-2 text-xs font-medium text-white hover:opacity-90">Review</a>
</div>
</div>
<div class="text-right">
<div class="rounded-full bg-white px-3 py-1 text-xs font-semibold text-[#15171A]">{{ $item['status'] }}</div>
<p class="mt-3 text-sm text-[#6B7280]">KK: {{ $item['kk'] }}</p>
</div>
</div>
</article>
@empty
<div class="rounded-xl border border-dashed border-[#D1D5DB] bg-[#F9FAFB] p-6 text-center text-[#6B7280]">Tidak ada usulan aktif.</div>
@endforelse
</div>
</section>
</x-dosen.partials.page-shell>