SmartCane/laravel_app/resources/views/components/project-manager-delete-confirmation-modal.blade.php
Martin Folkerts 486476d326 wip
2023-11-22 20:01:12 +01:00

20 lines
662 B
PHP

<x-confirmation-modal wire:model.live="confirmingReportDeletion" {{ $attributes }}>
<x-slot name="title">
{{ __('Delete Project') }}
</x-slot>
<x-slot name="content">
{{ __('Are you sure you would like to delete this Project?') }}
</x-slot>
<x-slot name="footer">
<x-secondary-button wire:click="$toggle('confirmingReportDeletion')" wire:loading.attr="disabled">
{{ __('Cancel') }}
</x-secondary-button>
<x-danger-button class="ml-3" wire:click="deleteProject" wire:loading.attr="disabled">
{{ __('Delete') }}
</x-danger-button>
</x-slot>
</x-confirmation-modal>