added more stacks

This commit is contained in:
denisdulici
2018-08-04 18:05:37 +03:00
parent d0dbf23d5a
commit 40c04128ff
24 changed files with 138 additions and 7 deletions

View File

@ -1,7 +1,13 @@
@stack('content_start')
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
@stack('content_wrapper_start')
<!-- Content Header (Page header) -->
<section class="content-header content-center">
@stack('content_header_start')
<h1>
@yield('title')
@yield('new_button')
@ -13,18 +19,28 @@
@endforeach
@endif
</h1>
@stack('content_header_end')
</section>
<!-- Main content -->
<section class="content content-center">
@include('flash::message')
@stack('content_content_start')
@yield('content')
@stack('content_content_start')
</section>
<!-- /.content -->
@stack('content_wrapper_end')
</div>
<!-- /.content-wrapper -->
<script type="text/javascript">
$('div.alert').not('.alert-important').delay(3000).fadeOut(350);
</script>
@stack('content_end')