2025-03-26 10:01:46 +07:00

17 lines
501 B
PHP

@props(['dir'])
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}" dir="{{$dir ? 'rtl' : 'ltr'}}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="csrf-token" content="{{ csrf_token() }}">
<title>{{env('APP_NAME')}} | Responsive Bootstrap 5 Admin Dashboard Template</title>
@include('partials.dashboard._head')
</head>
<body class="" >
@include('partials.dashboard._body2')
</body>
</html>