2024-09-18 19:51:05 -05:00
|
|
|
@props([
|
|
|
|
|
'noSeparator' => false,
|
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
<form
|
|
|
|
|
{{ $attributes->whereDoesntStartWith('class') }}
|
|
|
|
|
{{ $attributes->class(['grid grid-flow-row auto-rows-min gap-3']) }}
|
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
{{ $slot }}
|
|
|
|
|
|
|
|
|
|
@if ($actions)
|
|
|
|
|
@if(!$noSeparator)
|
2024-10-21 22:23:20 -05:00
|
|
|
<x-section-border class="my-3" />
|
2024-09-18 19:51:05 -05:00
|
|
|
@endif
|
|
|
|
|
|
2024-10-28 19:32:04 -05:00
|
|
|
<div class="flex justify-end gap-3">
|
2024-09-18 19:51:05 -05:00
|
|
|
{{ $actions}}
|
|
|
|
|
</div>
|
|
|
|
|
@endif
|
|
|
|
|
</form>
|