26 lines
523 B
PHP
Raw Normal View History

2018-10-23 18:47:55 +03:00
@stack('content_start')
2019-11-16 10:21:14 +03:00
@stack('content_header_start')
2018-10-23 18:47:55 +03:00
2019-11-16 10:21:14 +03:00
<h1 class="text-white">
2018-10-23 18:47:55 +03:00
@yield('title')
@yield('new_button')
</h1>
2019-11-16 10:21:14 +03:00
@stack('content_header_end')
2018-10-23 18:47:55 +03:00
2019-11-16 10:21:14 +03:00
@stack('content_content_start')
2018-10-23 18:47:55 +03:00
@yield('content')
2019-11-16 10:21:14 +03:00
@stack('content_content_end')
2018-10-23 18:47:55 +03:00
2019-11-16 10:21:14 +03:00
<notifications></notifications>
2018-10-23 18:47:55 +03:00
2019-11-16 10:21:14 +03:00
<akaunting-modal
v-if="addNew.modal"
:show="addNew.modal"
:title="addNew.title"
:message="addNew.html">
</akaunting-modal>
@stack('content_end')