Files
sibedas/resources/views/layouts/base.blade.php
2025-01-16 17:16:14 +07:00

19 lines
274 B
PHP
Executable File

<!DOCTYPE html>
<html @yield('html-attribute')>
<head>
@include('layouts.partials/title-meta')
@include('layouts.partials/head-css')
</head>
<body @yield('body-attribuet')>
@yield('content')
@include('layouts.partials/vendor-scripts')
</body>
</html>