2022-06-01 10:15:55 +03:00
|
|
|
<div {{ ((! $attributes->has('override')) || ($attributes->has('override') && ! in_array('class', explode(',', $attributes->get('override'))))) ? $attributes->merge(['class' => 'mb-14']) : $attributes }}>
|
|
|
|
@if (!empty($head) && $head->isNotEmpty())
|
|
|
|
{!! $head !!}
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@if (! empty($body) && $body->isNotEmpty())
|
2022-08-03 10:38:33 +03:00
|
|
|
<div
|
|
|
|
@class([
|
|
|
|
'grid my-3.5',
|
|
|
|
$spacingVertical,
|
|
|
|
$spacingHorizontal,
|
|
|
|
$columnNumber,
|
|
|
|
])
|
|
|
|
>
|
|
|
|
{!! $body !!}
|
|
|
|
</div>
|
2022-06-01 10:15:55 +03:00
|
|
|
@endif
|
|
|
|
|
|
|
|
@if (! empty($foot) && $foot->isNotEmpty())
|
|
|
|
{!! $foot !!}
|
|
|
|
@endif
|
|
|
|
</div>
|