sackey e839d40a99
Some checks are pending
linter / quality (push) Waiting to run
tests / ci (push) Waiting to run
Initial commit
2025-07-30 17:15:50 +00:00

12 lines
330 B
PHP

@php
$classes = Flux::classes('[grid-area:footer]')
->add($attributes->has('container') ? '' : 'p-6 lg:p-8')
;
@endphp
<div {{ $attributes->class($classes) }} data-flux-footer>
<flux:with-container :attributes="$attributes->except('class')->class('p-6 lg:p-8')">
{{ $slot }}
</flux:with-container>
</div>