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.
This commit is contained in:
Power BI Dev
2026-05-03 18:50:29 +07:00
parent 89ce9d30a7
commit dab8ea396b
107 changed files with 17544 additions and 20 deletions

View File

@@ -0,0 +1,19 @@
<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-3">
@forelse ($pemberitahuan as $item)
<article class="rounded-xl border border-[#E5E7EB] bg-[#F9FAFB] p-4">
<p class="text-sm text-[#6B7280]">{{ \Carbon\Carbon::parse($item['tgl'])->locale('id')->translatedFormat('j F Y, H:i') }}</p>
<p class="mt-2 text-[#15171A]">{{ $item['msg'] }}</p>
@if ($item['reviewHref'])
<div class="mt-4">
<a href="{{ $item['reviewHref'] }}" class="rounded-md border border-[#D1D5DB] bg-white px-3 py-2 text-xs font-medium text-[#15171A] hover:bg-[#F9FAFB]">Buka Review</a>
</div>
@endif
</article>
@empty
<div class="rounded-xl border border-dashed border-[#D1D5DB] bg-[#F9FAFB] p-6 text-center text-[#6B7280]">Tidak Ada Pemberitahuan Terbaru</div>
@endforelse
</div>
</section>
</x-dosen.partials.page-shell>