Files
kulakpos_web/resources/views/layouts/business/blank.blade.php

21 lines
683 B
PHP
Raw Normal View History

2026-03-15 17:08:23 +07:00
<!DOCTYPE html>
@if (in_array(app()->getLocale(), ['ar', 'arbh', 'eg-ar', 'fa', 'prs', 'ps', 'ur']))
<html lang="{{ app()->getLocale() }}" dir="rtl">
@else
<html lang="{{ app()->getLocale() }}" 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')}}">
<title>@hasSection('title') @yield('title') | @endif {{ get_option('general')['title'] ?? config('app.name') }}</title>
@include('layouts.business.partials.css')
</head>
<body>
@yield('main_content')
@include('layouts.business.partials.script')
</body>
</html>