Point Docker and Coolify compose to the Laravel rebuild app so mahasiswa, dosen, and admin flows are served from the new Laravel public entrypoint.
10 lines
683 B
PHP
10 lines
683 B
PHP
<x-mahasiswa.partials.page-shell :title="$title" :sidebar="$sidebar" :page-title="$pageTitle" :page-description="$pageDescription" :page-date="$pageDate" :user="$user" :page-actions="$pageActions ?? []">
|
|
<article class="rounded-xl border border-[#E5E7EB] bg-white p-6 shadow-[0_8px_12px_rgba(13,10,44,0.04)]">
|
|
<h2 class="text-[24px] font-semibold leading-8 text-[#15171A]">{{ $pengumuman['judul'] }}</h2>
|
|
<p class="mt-3 text-sm text-[#6B7280]">{{ $pengumuman['tgl'] }}</p>
|
|
<div class="prose prose-sm mt-6 max-w-none text-[#374151] prose-p:leading-7">
|
|
{!! $pengumuman['isi'] !!}
|
|
</div>
|
|
</article>
|
|
</x-mahasiswa.partials.page-shell>
|