19 lines
408 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')
<notifications></notifications>
2020-04-22 14:50:30 +03:00
<component v-bind:is="component"></component>
2019-11-16 10:21:14 +03:00
@stack('content_end')