akaunting/resources/views/partials/admin/content.blade.php

46 lines
1.3 KiB
PHP
Raw Normal View History

2018-08-04 18:05:37 +03:00
@stack('content_start')
2017-09-14 22:21:00 +03:00
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
2018-08-04 18:05:37 +03:00
@stack('content_wrapper_start')
2017-09-14 22:21:00 +03:00
<!-- Content Header (Page header) -->
<section class="content-header content-center">
2018-08-04 18:05:37 +03:00
@stack('content_header_start')
2017-09-14 22:21:00 +03:00
<h1>
@yield('title')
@yield('new_button')
2018-06-11 11:19:30 +03:00
@if (!empty($suggestion_modules))
@foreach($suggestion_modules as $s_module)
2018-05-25 18:00:11 +03:00
<span class="new-button">
<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> &nbsp;{{ $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>
2018-08-04 18:05:37 +03:00
@stack('content_header_end')
2017-09-14 22:21:00 +03:00
</section>
<!-- Main content -->
<section class="content content-center">
@include('flash::message')
2018-08-04 18:05:37 +03:00
@stack('content_content_start')
2017-09-14 22:21:00 +03:00
@yield('content')
2018-08-04 18:05:37 +03:00
2018-08-04 18:25:37 +03:00
@stack('content_content_end')
2017-09-14 22:21:00 +03:00
</section>
<!-- /.content -->
2018-08-04 18:05:37 +03:00
@stack('content_wrapper_end')
2017-09-14 22:21:00 +03:00
</div>
<!-- /.content-wrapper -->
<script type="text/javascript">
$('div.alert').not('.alert-important').delay(3000).fadeOut(350);
</script>
2018-08-04 18:05:37 +03:00
@stack('content_end')