Files
einundzwanzig-portal/resources/views/vendor/jetstream/components/dialog-modal.blade.php
Benjamin Takats 43d33db0cb add media stuff
2022-12-03 19:44:41 +01:00

18 lines
441 B
PHP

@props(['id' => null, 'maxWidth' => null, 'bg' => 'bg-white'])
<x-jet-modal :id="$id" :maxWidth="$maxWidth" :bg="$bg" {{ $attributes }}>
<div class="px-6 py-4">
<div class="text-lg">
{{ $title }}
</div>
<div class="mt-4">
{{ $content }}
</div>
</div>
<div class="flex flex-row justify-end px-6 py-4 {{ $bg }} text-right">
{{ $footer }}
</div>
</x-jet-modal>