MIF_E31230887/resources/views/components/page-header.blade.php

15 lines
351 B
PHP

@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>