17 lines
375 B
PHP
17 lines
375 B
PHP
<!DOCTYPE html>
|
|
<html lang="id">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>@yield('title', 'PEMBAYARAN MIDTRANS')</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
@livewireStyles
|
|
</head>
|
|
<body>
|
|
@yield('content')
|
|
|
|
@stack('scripts')
|
|
@livewireScripts
|
|
</body>
|
|
</html>
|