2024-05-24 17:06:02 -04:00
|
|
|
<div {{ $attributes->class(['md:flex md:items-center md:justify-between border-b dark:border-b-gray-800 pb-4 mb-6']) }}>
|
2024-05-17 23:54:03 -04:00
|
|
|
<div class="min-w-0 flex-1">
|
2024-05-24 17:06:02 -04:00
|
|
|
<h2 class="text-2xl font-bold leading-7 text-gray-900 dark:text-gray-200 sm:truncate sm:text-3xl sm:tracking-tight">{{ __($title) }}</h2>
|
2024-05-17 23:54:03 -04:00
|
|
|
</div>
|
2024-09-13 00:08:00 -04:00
|
|
|
@if ($buttonText && $buttonLink)
|
2024-05-17 23:54:03 -04:00
|
|
|
<div class="mt-4 flex md:ml-4 md:mt-0">
|
|
|
|
<a href="{{ $buttonLink }}">
|
2024-05-24 17:06:02 -04:00
|
|
|
<button type="button">{{ __($buttonText) }}</button>
|
2024-05-17 23:54:03 -04:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
</div>
|