Avoid mixed-content form submissions behind Coolify by rendering internal links and form actions as relative paths.
11 lines
931 B
PHP
11 lines
931 B
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)]">
|
|
<h2 class="text-2xl font-semibold text-[#15171A]">{{ $pengumumanItem->judul }}</h2>
|
|
<p class="mt-2 text-sm text-[#6B7280]">Diposting {{ \Carbon\Carbon::parse($pengumumanItem->tgl)->locale('id')->translatedFormat('j F Y, H:i') }}</p>
|
|
<div class="prose mt-6 max-w-none text-[#374151]">{!! $pengumumanItem->isi !!}</div>
|
|
<div class="mt-6">
|
|
<a href="{{ route('dosen.pengumuman.index', [], false) }}" class="inline-flex items-center rounded-md border border-[#D1D5DB] bg-white px-4 py-2.5 text-sm font-medium text-[#15171A] hover:bg-[#F9FAFB]">Kembali</a>
|
|
</div>
|
|
</section>
|
|
</x-dosen.partials.page-shell>
|