Files
kulakpos_web/resources/views/layouts/web/master.blade.php
triagungbiantoro 0e4f3434a3
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 8s
perubahan UI web + fix menu navigasi di page coba gratis
2026-03-29 13:02:50 +07:00

33 lines
831 B
PHP

<!DOCTYPE html>
@if (app()->getLocale() == 'ar')
<html lang="ar" dir="rtl">
@else
<html lang="en" dir="auto">
@endif
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="csrf-token" content="{{ csrf_token() }}">
<title>
@hasSection('title')
@yield('title') |
@endif {{ get_option('general')['title'] ?? config('app.name') }}
</title>
@include('layouts.web.partials.css')
</head>
<body>
@include('layouts.web.partials.header')
@yield('main_content')
@include('layouts.web.partials.footer')
<input type="hidden" id="payment_success" value="{{ session('payment_success') }}">
@include('layouts.web.partials.script')
</body>
</html>