20 lines
662 B
PHP
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>
|