Files
raby/resources/views/layout/base.blade.php
2020-03-02 01:05:39 -03:00

11 lines
196 B
PHP

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