Files
KevKemChiroDocker/resources/views/layouts/master.blade.php
T
CHIEFSOFT\ameye 346346573f first commit
2024-01-25 13:06:29 -05:00

34 lines
909 B
PHP

<!doctype html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}" data-bs-theme="light" data-footer="dark">
<head>
<meta charset="utf-8">
<title>@yield('title') | Toner - eCommerce + Admin HTML Template Build with HTML, React, Laravel, Nodejs</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta content="eCommerce + Admin HTML Template" name="description">
<meta content="Themesbrand" name="author">
<!-- App favicon -->
<link rel="shortcut icon" href="{{ URL::asset('build/images/favicon.ico') }}">
<!-- head css -->
@include('layouts.head-css')
</head>
<body>
<!-- top tagbar -->
@include('layouts.top-tagbar')
<!-- topbar -->
@include('layouts.topbar')
@yield('content')
<!-- footer -->
@include('layouts.footer')
<!-- scripts -->
@include('layouts.vendor-scripts')
</body>
</html>