parfum/resources/views/components/layouts/home.blade.php
2025-12-03 22:28:45 +07:00

21 lines
342 B
PHP

<!DOCTYPE html>
<html lang="en">
<head>
@include('components.partials.home._meta')
@include('components.partials.home._css')
</head>
<body>
@include("components.partials.home._header")
{{ $slot }}
@include("components.partials.home._footer")
@include('components.partials.home._js')
</body>
</html>