Files
raby/resources/views/layout/base.blade.php
2020-02-27 19:09:54 -03:00

9 lines
153 B
PHP

<!DOCTYPE html>
<html lang="es">
@include('layout.head')
<body>
@include('layout.header')
@yield('page_content')
@include('layout.footer')
</body>