Files
sibedas/resources/views/layouts/base.blade.php
2025-06-13 13:36:27 +00:00

19 lines
274 B
PHP

<!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>