SmartCane/laravel_app/resources/views/components/tab-section.blade.php
Martin Folkerts 486476d326 wip
2023-11-22 20:01:12 +01:00

24 lines
801 B
PHP

<div {{ $attributes->merge(['class' => 'md:grid md:grid-cols-1 md:gap-6']) }}>
<div class="mt-5 px-6">
<h2>{{ $title }}</h2>
<span name="description">{{ $description }}</span>
</div>
<div class="mt-5 md:mt-0 md:col-span-2">
<div class="px-4 py-5 bg-white sm:p-6 shadow {{ isset($actions) ? 'sm:rounded-tl-md sm:rounded-tr-md' : 'sm:rounded-md' }}">
<div class="grid grid-cols-1" >
{{ $form }}
</div>
</div>
@if (isset($actions))
<div class="flex items-center justify-end px-4 py-3 bg-gray-50 text-right sm:px-6 shadow sm:rounded-bl-md sm:rounded-br-md">
{{ $actions }}
</div>
@endif
</form>
</div>
</div>