12 lines
261 B
PHP
12 lines
261 B
PHP
@extends('web.layouts.application')
|
|
|
|
@section('layout-content')
|
|
@include('web.layouts.includes.header')
|
|
<!-- wrapper -->
|
|
<div id="wrapper">
|
|
@yield('content')
|
|
<!-- /FOOTER -->
|
|
@include('web.layouts.includes.footer')
|
|
</div>
|
|
<!-- /wrapper -->
|
|
@endsection
|