schneespur/resources/views/components/confirm-dialog.blade.php
Michael ee3dbba6cc Initial release v1.0.0
Schneespur — Open-source winter service documentation software (PWA + Admin).
GPS tracking via OwnTracks, weather data, photo evidence, and legally
compliant service records for winter maintenance operators.

License: AGPL-3.0-or-later
2026-05-17 13:33:51 +00:00

17 lines
544 B
PHP

@props(['name', 'title', 'message'])
<x-modal :name="$name" maxWidth="lg" focusable>
<div class="p-6">
<h2 class="text-lg font-medium text-gray-900">{{ $title }}</h2>
<p class="mt-2 text-sm text-gray-600 break-words">{!! $message !!}</p>
<div class="mt-6 flex justify-end space-x-3">
<x-secondary-button x-on:click="$dispatch('close-modal', '{{ $name }}')">
{{ __('ui.button_cancel') }}
</x-secondary-button>
{{ $action }}
</div>
</div>
</x-modal>