35 lines
1.2 KiB
PHP
35 lines
1.2 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="ms">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>@yield('tajuk', config('app.name'))</title>
|
|
@php $cssVer = @filemtime(public_path('css/app.css')) ?: null; @endphp
|
|
<link rel="stylesheet" href="{{ asset('css/app.css') }}{{ $cssVer ? '?v=' . $cssVer : '' }}">
|
|
</head>
|
|
<body>
|
|
<header class="topbar">
|
|
<a class="jenama" href="{{ auth()->check() ? route('sesi.index') : url('/') }}">
|
|
Kehadiran Taklimat SPR 2026
|
|
</a>
|
|
@auth
|
|
<div class="pengguna">
|
|
<span>{{ auth()->user()->name }} ({{ auth()->user()->role === 'admin' ? 'Admin' : 'Pengurus DUN' }})</span>
|
|
<form method="POST" action="{{ route('logout') }}" style="margin:0">
|
|
@csrf
|
|
<button type="submit" class="btn btn-kecil btn-merah">Log Keluar</button>
|
|
</form>
|
|
</div>
|
|
@endauth
|
|
</header>
|
|
|
|
<main class="container @yield('saiz-container')">
|
|
@if (session('status'))
|
|
<div class="makluman makluman-jaya">{{ session('status') }}</div>
|
|
@endif
|
|
|
|
@yield('kandungan')
|
|
</main>
|
|
</body>
|
|
</html>
|