You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
xshop/resources/views/components/panel-header.blade.php

20 lines
624 B
PHTML

<!doctype html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}" data-bs-theme="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- CSRF Token -->
<meta name="csrf-token" content="{{ csrf_token() }}">
<title> @yield('title') {{ config('app.name', 'Laravel') }}</title>
@include('components.assets')
</head>
<body class="@yield('body-class')" @if(langIsRTL(config('app.locale'))) dir="rtl" @endif>