ECOMMERCE/resources/views/layouts/base.blade.php

22 lines
363 B
PHP

<!DOCTYPE html>
<html lang="en" data-bs-theme="light" data-pwa="true">
<head>
@include('layouts.partials/title-meta')
@vite(['resources/js/theme-switcher.js'])
@include('layouts.partials/head-css')
</head>
<body>
@yield('content')
@include('layouts.partials/back-to-top')
@include('layouts.partials/footer-script')
</body>
</html>