|
@props(['title'])
|
|
|
|
<div class="sm:flex sm:items-center sm:justify-between mb-6">
|
|
<div>
|
|
<h1 class="text-2xl font-bold text-gray-900 leading-tight">
|
|
{{ $title }}
|
|
</h1>
|
|
</div>
|
|
@if(isset($actions))
|
|
<div class="mt-4 sm:mt-0 sm:ml-16 sm:flex-none">
|
|
{{ $actions }}
|
|
</div>
|
|
@endif
|
|
</div>
|