30 lines
1 KiB
PHP
30 lines
1 KiB
PHP
<x-modal wire:model.live="showTestReportModal" {{ $attributes }} >
|
|
<x-form-modal submit="createProjectTestReport" wire:loading.class="opacity-50">
|
|
<x-slot name="title">
|
|
{{ __('Project') }}
|
|
</x-slot>
|
|
|
|
<x-slot name="description">
|
|
{{ __('Report generator for generating reports') }}
|
|
</x-slot>
|
|
|
|
<x-slot name="form">
|
|
<div class="">
|
|
When you create a test report It will remove existing mosaics files and generate new ones for the last 4 weeks. This process may take a while.
|
|
</div>
|
|
</x-slot>
|
|
|
|
<x-slot name="actions">
|
|
<x-secondary-button class="mr-3"
|
|
type="button"
|
|
x-on:click="$wire.showTestReportModal = false"
|
|
>
|
|
{{ __('Cancel') }}
|
|
</x-secondary-button>
|
|
<x-button wire:loading.disabled>
|
|
{{ __('Save') }}
|
|
</x-button>
|
|
</x-slot>
|
|
</x-form-modal>
|
|
</x-modal>
|