2022-06-01 10:15:55 +03:00
|
|
|
@stack('header_start')
|
|
|
|
|
2022-11-14 09:23:45 +03:00
|
|
|
<div id="header" class="xl:pt-6 -mt-2">
|
2022-11-14 11:54:09 +03:00
|
|
|
<div class="flex flex-col sm:flex-row items-start justify-between sm:space-x-4 hide-empty-page">
|
2022-11-14 09:23:45 +03:00
|
|
|
<div data-page-title-first class="w-full sm:w-6/12 items-center mb-3 sm:mb-0">
|
2022-06-01 10:15:55 +03:00
|
|
|
<div class="flex items-center">
|
2022-11-14 09:23:45 +03:00
|
|
|
<h1 class="flex items-center text-2xl xl:text-5xl text-black font-light -ml-0.5 mt-2 whitespace-nowrap">
|
2022-08-16 15:20:03 +03:00
|
|
|
<x-title>
|
2022-08-02 10:32:37 +03:00
|
|
|
{!! $title !!}
|
2022-08-16 15:20:03 +03:00
|
|
|
</x-title>
|
2022-06-01 10:15:55 +03:00
|
|
|
|
|
|
|
@yield('dashboard_action')
|
|
|
|
</h1>
|
|
|
|
|
2022-07-25 16:19:49 +03:00
|
|
|
@if (! empty($status))
|
2022-11-17 11:05:18 +03:00
|
|
|
<div class="ltr:ml-4 rtl:mr-4 mt-2">
|
2022-07-25 16:19:49 +03:00
|
|
|
{!! $status !!}
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
{!! $info ?? '' !!}
|
2022-06-01 10:15:55 +03:00
|
|
|
|
|
|
|
{!! $favorite ?? '' !!}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2022-11-14 09:23:45 +03:00
|
|
|
<div data-page-title-second class="w-full flex flex-wrap flex-col sm:flex-row sm:items-center justify-end sm:space-x-2 sm:rtl:space-x-reverse space-y-2 suggestion-buttons">
|
|
|
|
@stack('header_button_start')
|
2022-06-01 10:15:55 +03:00
|
|
|
|
2022-11-14 09:23:45 +03:00
|
|
|
{!! $buttons !!}
|
2022-06-01 10:15:55 +03:00
|
|
|
|
2022-11-14 09:23:45 +03:00
|
|
|
@stack('header_button_end')
|
2022-06-01 10:15:55 +03:00
|
|
|
|
2022-11-14 09:23:45 +03:00
|
|
|
<x-suggestions />
|
2022-06-01 10:15:55 +03:00
|
|
|
|
2022-11-14 09:23:45 +03:00
|
|
|
@stack('header_suggestion_end')
|
2022-06-01 10:15:55 +03:00
|
|
|
|
2022-11-14 09:23:45 +03:00
|
|
|
{!! $moreButtons !!}
|
2022-06-01 10:15:55 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@stack('header_end')
|