29 lines
751 B
PHP
Raw Normal View History

2019-11-16 10:21:14 +03:00
@stack('content_start')
<div id="app">
@stack('content_header_start')
<div class="row">
<div class="col-md-6">
<h1>
@yield('title')
</h1>
</div>
<div class="col-md-6 text-right">
@yield('new_button')
</div>
</div>
@stack('content_header_end')
@stack('content_content_start')
@yield('content')
@stack('content_content_end')
2021-01-19 15:56:22 +03:00
2019-11-16 10:21:14 +03:00
<notifications></notifications>
2021-01-19 15:56:22 +03:00
<form id="form-dynamic-component" method="POST" action="#"></form>
<component v-bind:is="component"></component>
2019-11-16 10:21:14 +03:00
</div>
@stack('content_end')