2017-09-14 22:21:00 +03:00
|
|
|
<!-- Content Wrapper. Contains page content -->
|
|
|
|
<div class="content-wrapper">
|
|
|
|
<!-- Content Header (Page header) -->
|
|
|
|
<section class="content-header content-center">
|
|
|
|
<h1>
|
|
|
|
@yield('title')
|
|
|
|
@yield('new_button')
|
2018-05-25 17:31:29 +03:00
|
|
|
@if ($suggestion_modules)
|
2018-05-28 13:22:05 +03:00
|
|
|
@foreach($suggestion_modules as $s_module)
|
2018-05-25 18:00:11 +03:00
|
|
|
<span class="new-button">
|
2018-05-29 19:01:29 +03:00
|
|
|
<a href="{{ url($s_module->action_url) . '?' . http_build_query((array) $s_module->action_parameters) }}" class="btn btn-default btn-sm" target="{{ $s_module->action_target }}"><span class="fa fa-rocket"></span> {{ $s_module->name }}</a>
|
2018-05-25 18:00:11 +03:00
|
|
|
</span>
|
2018-05-25 17:31:29 +03:00
|
|
|
@endforeach
|
|
|
|
@endif
|
2017-09-14 22:21:00 +03:00
|
|
|
</h1>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<!-- Main content -->
|
|
|
|
<section class="content content-center">
|
|
|
|
@include('flash::message')
|
|
|
|
|
|
|
|
@yield('content')
|
|
|
|
</section>
|
|
|
|
<!-- /.content -->
|
|
|
|
</div>
|
|
|
|
<!-- /.content-wrapper -->
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
$('div.alert').not('.alert-important').delay(3000).fadeOut(350);
|
|
|
|
</script>
|