2024-01-03 19:34:50 +01:00
|
|
|
<div class="row mb-2">
|
|
|
|
<div class="col">
|
2024-01-04 14:59:37 +01:00
|
|
|
<template x-if="notifications.success.show">
|
2024-01-03 19:34:50 +01:00
|
|
|
<div class="alert alert-success alert-dismissible fade show" role="alert">
|
2024-01-04 14:59:37 +01:00
|
|
|
<template x-if="notifications.success.url != ''">
|
|
|
|
<a :href="notifications.success.url" class="alert-link" x-text="notifications.success.text"></a>
|
|
|
|
</template>
|
|
|
|
<template x-if="notifications.success.url == ''">
|
|
|
|
<span x-text="notifications.success.text"></span>
|
|
|
|
</template>
|
|
|
|
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="{{ __('firefly.close') }}"></button>
|
2024-01-03 19:34:50 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
2024-01-04 14:59:37 +01:00
|
|
|
<template x-if="notifications.error.show">
|
|
|
|
<div class="alert alert-danger alert-dismissible fade show" role="alert">
|
|
|
|
<template x-if="notifications.error.url != ''">
|
|
|
|
<a :href="notifications.error.url" class="alert-link" x-text="notifications.error.text"></a>
|
|
|
|
</template>
|
|
|
|
<template x-if="notifications.error.url == ''">
|
|
|
|
<span x-text="notifications.error.text"></span>
|
|
|
|
</template>
|
|
|
|
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="{{ __('firefly.close') }}"></button>
|
2024-01-03 19:34:50 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
2024-01-04 14:59:37 +01:00
|
|
|
<template x-if="notifications.wait.show">
|
2024-01-03 19:34:50 +01:00
|
|
|
<div class="alert alert-info alert-dismissible fade show" role="alert">
|
2024-01-04 14:59:37 +01:00
|
|
|
<em class="fa-solid fa-spinner fa-spin"></em>
|
|
|
|
<span x-text="notifications.wait.text"></span>
|
|
|
|
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="{{ __('firefly.close') }}"></button>
|
2024-01-03 19:34:50 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</div>
|
|
|
|
</div>
|