Files
investbrain/resources/views/components/dialog-modal.blade.php
T

18 lines
526 B
PHP
Raw Normal View History

2024-08-01 13:53:10 -05:00
@props(['id' => null, 'maxWidth' => null])
2024-10-22 16:48:53 -05:00
<x-ib-livewire-modal :id="$id" :maxWidth="$maxWidth" {{ $attributes }} :showClose="false">
<div class="p-2">
2024-08-01 13:53:10 -05:00
<div class="text-lg font-medium text-gray-900 dark:text-gray-100">
{{ $title }}
</div>
<div class="mt-4 text-sm text-gray-600 dark:text-gray-400">
{{ $content }}
</div>
</div>
2024-10-24 14:48:24 -05:00
<div class="flex flex-row items-center justify-end mt-3 p-2 text-end">
2024-08-01 13:53:10 -05:00
{{ $footer }}
</div>
2024-10-22 16:48:53 -05:00
</x-ib-livewire-modal>