diff --git a/app/Http/Controllers/Admin/EmailSettingsController.php b/app/Http/Controllers/Admin/EmailSettingsController.php
index 189521e6..31f593fd 100644
--- a/app/Http/Controllers/Admin/EmailSettingsController.php
+++ b/app/Http/Controllers/Admin/EmailSettingsController.php
@@ -3,11 +3,14 @@
namespace App\Http\Controllers\Admin;
use App\Http\Controllers\Controller;
+use App\Models\EmailAttachment;
+use App\Models\EmailFolder;
use App\Models\EmailSetting;
use App\Models\SenderAccount;
use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Crypt;
+use Illuminate\Support\Facades\Storage;
class EmailSettingsController extends Controller
{
@@ -262,12 +265,24 @@ class EmailSettingsController extends Controller
{
$this->authorizeDelete('settings');
+ EmailAttachment::chunk(100, function ($attachments) {
+ foreach ($attachments as $attachment) {
+ if ($attachment->file_path && Storage::exists($attachment->file_path)) {
+ Storage::delete($attachment->file_path);
+ }
+ }
+ });
+
+ EmailFolder::whereIn('type', ['inbox', 'sent', 'drafts', 'trash', 'archive', 'starred'])->each(function ($folder) {
+ $folder->delete();
+ });
+
$settings = EmailSetting::first();
if ($settings) {
$settings->delete();
}
- return redirect('/impostazioni/email')->with('success', 'Configurazione email eliminata. Tutti i dati sono stati rimossi.');
+ return redirect('/impostazioni/email')->with('success', 'Configurazione email eliminata. Messaggi, cartelle e allegati rimossi completamente.');
}
public function senderTestSmtp(Request $request, int $id)
diff --git a/storage/framework/views/0148037841f0b0a1145e45ff04bf608f.php b/storage/framework/views/0148037841f0b0a1145e45ff04bf608f.php
deleted file mode 100755
index 7854d454..00000000
--- a/storage/framework/views/0148037841f0b0a1145e45ff04bf608f.php
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
\ No newline at end of file
diff --git a/storage/framework/views/0325075c0e28e108f55852a5213b7453.php b/storage/framework/views/0325075c0e28e108f55852a5213b7453.php
deleted file mode 100755
index 434270e9..00000000
--- a/storage/framework/views/0325075c0e28e108f55852a5213b7453.php
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
\ No newline at end of file
diff --git a/storage/framework/views/07a2b546b33f00549cc0ad3c37e7e8f4.php b/storage/framework/views/07a2b546b33f00549cc0ad3c37e7e8f4.php
deleted file mode 100755
index 4cc160ed..00000000
--- a/storage/framework/views/07a2b546b33f00549cc0ad3c37e7e8f4.php
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
\ No newline at end of file
diff --git a/storage/framework/views/0ee9db77d28cdb3ed3633c69f149c2cd.php b/storage/framework/views/0ee9db77d28cdb3ed3633c69f149c2cd.php
deleted file mode 100755
index a6cf66de..00000000
--- a/storage/framework/views/0ee9db77d28cdb3ed3633c69f149c2cd.php
+++ /dev/null
@@ -1,77 +0,0 @@
- 'default', 'variant' => 'soft']));
-
-foreach ($attributes->all() as $__key => $__value) {
- if (in_array($__key, $__propNames)) {
- $$__key = $$__key ?? $__value;
- } else {
- $__newAttributes[$__key] = $__value;
- }
-}
-
-$attributes = new \Illuminate\View\ComponentAttributeBag($__newAttributes);
-
-unset($__propNames);
-unset($__newAttributes);
-
-foreach (array_filter((['type' => 'default', 'variant' => 'soft']), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
- $$__key = $$__key ?? $__value;
-}
-
-$__defined_vars = get_defined_vars();
-
-foreach ($attributes->all() as $__key => $__value) {
- if (array_key_exists($__key, $__defined_vars)) unset($$__key);
-}
-
-unset($__defined_vars, $__key, $__value); ?>
-
- [
- 'soft' => 'bg-black/8 text-neutral-900 dark:border-neutral-700 dark:bg-white/10 dark:text-neutral-100',
- 'solid' => 'bg-neutral-600 text-neutral-100 dark:border-neutral-500 dark:bg-neutral-600',
- ],
- 'success' => [
- 'soft' => 'bg-emerald-200 text-emerald-900 dark:border-emerald-600 dark:bg-emerald-900/70 dark:text-emerald-400',
- 'solid' => 'bg-emerald-600 dark:border-emerald-500 dark:bg-emerald-600',
- ],
- 'primary' => [
- 'soft' => 'bg-blue-100 text-blue-900 dark:border-blue-800 dark:bg-blue-950 dark:text-blue-300',
- 'solid' => 'bg-blue-700 dark:border-blue-600 dark:bg-blue-700',
- ],
- 'error' => [
- 'soft' => 'bg-rose-200 text-rose-900 dark:border-rose-900 dark:bg-rose-950 dark:text-rose-100 dark:[&_svg]:!text-white',
- 'solid' => 'bg-rose-600 dark:border-rose-500 dark:bg-rose-600',
- ],
- 'alert' => [
- 'soft' => 'bg-amber-200 text-amber-900 dark:border-amber-800 dark:bg-amber-950 dark:text-amber-300',
- 'solid' => 'bg-amber-600 dark:border-amber-500 dark:bg-amber-600',
- ],
- 'white' => [
- 'soft' => 'bg-white text-neutral-900 dark:border-neutral-700 dark:bg-neutral-800 dark:text-neutral-100',
- 'solid' => 'bg-black/10 text-neutral-900 dark:text-neutral-900 dark:bg-white',
- ],
-];
-
-$variants = [
- 'soft' => '',
- 'solid' => 'text-white dark:text-white [&_svg]:!text-white',
-];
-
-$typeClasses = $types[$type][$variant] ?? $types['default']['soft'];
-$variantClasses = $variants[$variant] ?? $variants['soft'];
-
-$classes = implode(' ', [$baseClasses, $typeClasses, $variantClasses]);
-
-?>
-
-
merge(['class' => $classes])); ?>>
-
-
-
-
\ No newline at end of file
diff --git a/storage/framework/views/10bfd1cba180cea07cac837f84b0c800.php b/storage/framework/views/10bfd1cba180cea07cac837f84b0c800.php
deleted file mode 100755
index 147fbe92..00000000
--- a/storage/framework/views/10bfd1cba180cea07cac837f84b0c800.php
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
\ No newline at end of file
diff --git a/storage/framework/views/220e52aac064839c26a440ed843d711d.php b/storage/framework/views/220e52aac064839c26a440ed843d711d.php
deleted file mode 100755
index 31d9f7cc..00000000
--- a/storage/framework/views/220e52aac064839c26a440ed843d711d.php
+++ /dev/null
@@ -1,8 +0,0 @@
-merge(['class' => "w-full max-w-7xl mx-auto p-4 sm:p-14 border-x border-dashed border-neutral-300 dark:border-white/[9%]"])); ?>
-
->
-
-
-
-
\ No newline at end of file
diff --git a/storage/framework/views/256fc02842ebb80196b5b450c0b70cc5.php b/storage/framework/views/256fc02842ebb80196b5b450c0b70cc5.php
deleted file mode 100755
index 0fa38bbf..00000000
--- a/storage/framework/views/256fc02842ebb80196b5b450c0b70cc5.php
+++ /dev/null
@@ -1,180 +0,0 @@
-all() as $__key => $__value) {
- if (in_array($__key, $__propNames)) {
- $$__key = $$__key ?? $__value;
- } else {
- $__newAttributes[$__key] = $__value;
- }
-}
-
-$attributes = new \Illuminate\View\ComponentAttributeBag($__newAttributes);
-
-unset($__propNames);
-unset($__newAttributes);
-
-foreach (array_filter((['frame']), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
- $$__key = $$__key ?? $__value;
-}
-
-$__defined_vars = get_defined_vars();
-
-foreach ($attributes->all() as $__key => $__value) {
- if (array_key_exists($__key, $__defined_vars)) unset($$__key);
-}
-
-unset($__defined_vars, $__key, $__value); ?>
-
-
-
-
-
-
-
-
-
- 'laravel-exceptions-renderer::components.formatted-source','data' => ['frame' => $frame]] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::formatted-source'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['frame' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($frame)]); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
- 'laravel-exceptions-renderer::components.file-with-line','data' => ['frame' => $frame,'direction' => 'rtl']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::file-with-line'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['frame' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($frame),'direction' => 'rtl']); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- snippet()): ?>
-
-
- 'laravel-exceptions-renderer::components.frame-code','data' => ['code' => $snippet,'highlightedLine' => $frame->line(),'xShow' => 'expanded','xCloak' => !$frame->isMain()]] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::frame-code'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['code' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($snippet),'highlightedLine' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($frame->line()),'x-show' => 'expanded','x-cloak' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute(!$frame->isMain())]); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/storage/framework/views/299f71d41d7345c8afe8aca0236c72bc.php b/storage/framework/views/299f71d41d7345c8afe8aca0236c72bc.php
deleted file mode 100755
index 829bc13b..00000000
--- a/storage/framework/views/299f71d41d7345c8afe8aca0236c72bc.php
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
\ No newline at end of file
diff --git a/storage/framework/views/3b76cd18274c0dba317c52215ca14210.php b/storage/framework/views/3b76cd18274c0dba317c52215ca14210.php
deleted file mode 100755
index fbf7df73..00000000
--- a/storage/framework/views/3b76cd18274c0dba317c52215ca14210.php
+++ /dev/null
@@ -1,170 +0,0 @@
-all() as $__key => $__value) {
- if (in_array($__key, $__propNames)) {
- $$__key = $$__key ?? $__value;
- } else {
- $__newAttributes[$__key] = $__value;
- }
-}
-
-$attributes = new \Illuminate\View\ComponentAttributeBag($__newAttributes);
-
-unset($__propNames);
-unset($__newAttributes);
-
-foreach (array_filter((['frames']), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
- $$__key = $$__key ?? $__value;
-}
-
-$__defined_vars = get_defined_vars();
-
-foreach ($attributes->all() as $__key => $__value) {
- if (array_key_exists($__key, $__defined_vars)) unset($$__key);
-}
-
-unset($__defined_vars, $__key, $__value); ?>
-
-
-
-
-
-
-
- 'laravel-exceptions-renderer::components.icons.folder','data' => ['class' => 'w-3 h-3 text-neutral-400','xShow' => '!expanded','xCloak' => true]] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::icons.folder'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['class' => 'w-3 h-3 text-neutral-400','x-show' => '!expanded','x-cloak' => true]); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
- 'laravel-exceptions-renderer::components.icons.folder-open','data' => ['class' => 'w-3 h-3 text-blue-500 dark:text-emerald-500','xShow' => 'expanded']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::icons.folder-open'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['class' => 'w-3 h-3 text-blue-500 dark:text-emerald-500','x-show' => 'expanded']); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
- vendor
-
-
-
-
-
-
-
- addLoop($__currentLoopData); foreach($__currentLoopData as $frame): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
-
-
-
- 'laravel-exceptions-renderer::components.vendor-frame','data' => ['frame' => $frame]] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::vendor-frame'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['frame' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($frame)]); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
- popLoop(); $loop = $__env->getLastLoop(); ?>
-
-
-
\ No newline at end of file
diff --git a/storage/framework/views/4a1caea37715ae550150698b1b586bdb.php b/storage/framework/views/4a1caea37715ae550150698b1b586bdb.php
deleted file mode 100755
index 04bfd3cc..00000000
--- a/storage/framework/views/4a1caea37715ae550150698b1b586bdb.php
+++ /dev/null
@@ -1,79 +0,0 @@
-all() as $__key => $__value) {
- if (in_array($__key, $__propNames)) {
- $$__key = $$__key ?? $__value;
- } else {
- $__newAttributes[$__key] = $__value;
- }
-}
-
-$attributes = new \Illuminate\View\ComponentAttributeBag($__newAttributes);
-
-unset($__propNames);
-unset($__newAttributes);
-
-foreach (array_filter((['routeParameters']), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
- $$__key = $$__key ?? $__value;
-}
-
-$__defined_vars = get_defined_vars();
-
-foreach ($attributes->all() as $__key => $__value) {
- if (array_key_exists($__key, $__defined_vars)) unset($$__key);
-}
-
-unset($__defined_vars, $__key, $__value); ?>
-
-
-
Routing parameters
-
-
-
-
- 'laravel-exceptions-renderer::components.syntax-highlight','data' => ['code' => $routeParameters,'language' => 'json']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::syntax-highlight'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['code' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($routeParameters),'language' => 'json']); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
-
-
- 'laravel-exceptions-renderer::components.empty-state','data' => ['message' => 'No routing parameters']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::empty-state'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['message' => 'No routing parameters']); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/storage/framework/views/4a704f9f6f92d0a3272ccbfa6b7fe314.php b/storage/framework/views/4a704f9f6f92d0a3272ccbfa6b7fe314.php
deleted file mode 100755
index b603e2c5..00000000
--- a/storage/framework/views/4a704f9f6f92d0a3272ccbfa6b7fe314.php
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
\ No newline at end of file
diff --git a/storage/framework/views/4dfd58c25b7cb5c8baf6fd5763c912f1.php b/storage/framework/views/4dfd58c25b7cb5c8baf6fd5763c912f1.php
deleted file mode 100755
index 13b03cae..00000000
--- a/storage/framework/views/4dfd58c25b7cb5c8baf6fd5763c912f1.php
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/storage/framework/views/4ff85f2bf93314bc22669760c5ce7051.php b/storage/framework/views/4ff85f2bf93314bc22669760c5ce7051.php
deleted file mode 100755
index 1af3d61a..00000000
--- a/storage/framework/views/4ff85f2bf93314bc22669760c5ce7051.php
+++ /dev/null
@@ -1,374 +0,0 @@
-all() as $__key => $__value) {
- if (in_array($__key, $__propNames)) {
- $$__key = $$__key ?? $__value;
- } else {
- $__newAttributes[$__key] = $__value;
- }
-}
-
-$attributes = new \Illuminate\View\ComponentAttributeBag($__newAttributes);
-
-unset($__propNames);
-unset($__newAttributes);
-
-foreach (array_filter((['queries']), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
- $$__key = $$__key ?? $__value;
-}
-
-$__defined_vars = get_defined_vars();
-
-foreach ($attributes->all() as $__key => $__value) {
- if (array_key_exists($__key, $__defined_vars)) unset($$__key);
-}
-
-unset($__defined_vars, $__key, $__value); ?>
-
-merge(['class' => "flex flex-col gap-2.5 bg-neutral-50 dark:bg-white/1 border border-neutral-200 dark:border-neutral-800 rounded-xl p-2.5 shadow-xs"])); ?>
-
- x-data="{
- totalQueries: ,
- currentPage: 1,
- perPage: 10,
- get totalPages() {
- return Math.ceil(this.totalQueries / this.perPage);
- },
- get hasPrevious() {
- return this.currentPage > 1;
- },
- get hasNext() {
- return this.currentPage < this.totalPages;
- },
- goToPage(page) {
- if (page >= 1 && page <= this.totalPages) {
- this.currentPage = page;
- }
- },
- first() {
- this.currentPage = 1;
- },
- last() {
- this.currentPage = this.totalPages;
- },
- previous() {
- if (this.hasPrevious) {
- this.currentPage--;
- }
- },
- next() {
- if (this.hasNext) {
- this.currentPage++;
- }
- },
- get visiblePages() {
- const total = this.totalPages;
- const current = this.currentPage;
- const pages = [];
-
- if (total <= 7) {
- for (let i = 1; i <= total; i++) {
- pages.push({ type: 'page', value: i });
- }
- } else {
- if (current <= 4) {
- for (let i = 1; i <= 5; i++) {
- pages.push({ type: 'page', value: i });
- }
- if (total > 6) {
- pages.push({ type: 'ellipsis', value: '...', id: 'end' });
- pages.push({ type: 'page', value: total });
- }
- } else if (current > total - 4) {
- pages.push({ type: 'page', value: 1 });
- if (total > 6) {
- pages.push({ type: 'ellipsis', value: '...', id: 'start' });
- }
- for (let i = Math.max(total - 4, 2); i <= total; i++) {
- pages.push({ type: 'page', value: i });
- }
- } else {
- pages.push({ type: 'page', value: 1 });
- pages.push({ type: 'ellipsis', value: '...', id: 'start' });
- for (let i = current - 1; i <= current + 1; i++) {
- pages.push({ type: 'page', value: i });
- }
- pages.push({ type: 'ellipsis', value: '...', id: 'end' });
- pages.push({ type: 'page', value: total });
- }
- }
- return pages;
- }
- }"
->
-
-
-
-
-
- 'laravel-exceptions-renderer::components.icons.database','data' => ['class' => 'w-2.5 h-2.5 text-blue-500 dark:text-emerald-500']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::icons.database'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['class' => 'w-2.5 h-2.5 text-blue-500 dark:text-emerald-500']); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
Queries
-
-
-
- 100): ?>
-
-
- 'laravel-exceptions-renderer::components.icons.info','data' => ['class' => 'w-3 h-3 text-blue-500 dark:text-emerald-500','dataTippyContent' => 'Only the first 100 queries are shown']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::icons.info'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['class' => 'w-3 h-3 text-blue-500 dark:text-emerald-500','data-tippy-content' => 'Only the first 100 queries are shown']); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- addLoop($__currentLoopData); foreach($__currentLoopData as $index => ['connectionName' => $connectionName, 'sql' => $sql, 'time' => $time]): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); $__empty_1 = false; ?>
-
-
-
-
-
- 'laravel-exceptions-renderer::components.icons.database','data' => ['class' => 'w-3 h-3 text-neutral-500 dark:text-neutral-400']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::icons.database'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['class' => 'w-3 h-3 text-neutral-500 dark:text-neutral-400']); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
-
-
- 'laravel-exceptions-renderer::components.syntax-highlight','data' => ['code' => $sql,'language' => 'sql','truncate' => true,'class' => 'min-w-0','dataTippyContent' => ''.e(nl2br($sql)).'']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::syntax-highlight'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['code' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($sql),'language' => 'sql','truncate' => true,'class' => 'min-w-0','data-tippy-content' => ''.e(nl2br($sql)).'']); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
ms
-
- popLoop(); $loop = $__env->getLastLoop(); if ($__empty_1): ?>
-
-
- 'laravel-exceptions-renderer::components.empty-state','data' => ['message' => 'No queries executed']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::empty-state'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['message' => 'No queries executed']); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ...
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/storage/framework/views/52fdfffd5ede6c5418fc40f761d0b0ef.php b/storage/framework/views/52fdfffd5ede6c5418fc40f761d0b0ef.php
deleted file mode 100755
index 612c4950..00000000
--- a/storage/framework/views/52fdfffd5ede6c5418fc40f761d0b0ef.php
+++ /dev/null
@@ -1,65 +0,0 @@
-all() as $__key => $__value) {
- if (in_array($__key, $__propNames)) {
- $$__key = $$__key ?? $__value;
- } else {
- $__newAttributes[$__key] = $__value;
- }
-}
-
-$attributes = new \Illuminate\View\ComponentAttributeBag($__newAttributes);
-
-unset($__propNames);
-unset($__newAttributes);
-
-foreach (array_filter((['frame']), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
- $$__key = $$__key ?? $__value;
-}
-
-$__defined_vars = get_defined_vars();
-
-foreach ($attributes->all() as $__key => $__value) {
- if (array_key_exists($__key, $__defined_vars)) unset($$__key);
-}
-
-unset($__defined_vars, $__key, $__value); ?>
-
-class();
- $operator = $frame->operator();
- $callable = $frame->callable();
-
- if ($class && $operator) {
- $source = $class.$operator.$callable.'('.implode(', ', $frame->args()).')';
- } elseif ($callable !== 'throw') {
- $source = $callable.'('.implode(', ', $frame->args()).')';
- } else {
- $source = $frame->source();
- }
-?>
-
-
-
- 'laravel-exceptions-renderer::components.syntax-highlight','data' => ['code' => $source,'language' => 'php','truncate' => true,'class' => 'text-xs min-w-0','dataTippyContent' => ''.e($source).'']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::syntax-highlight'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['code' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($source),'language' => 'php','truncate' => true,'class' => 'text-xs min-w-0','data-tippy-content' => ''.e($source).'']); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/storage/framework/views/55151abdb561150ddc421ea357f4086f.php b/storage/framework/views/55151abdb561150ddc421ea357f4086f.php
deleted file mode 100755
index 1dbd05ae..00000000
--- a/storage/framework/views/55151abdb561150ddc421ea357f4086f.php
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
\ No newline at end of file
diff --git a/storage/framework/views/6a7aaead1cd4adb109b2f35a98221f9f.php b/storage/framework/views/6a7aaead1cd4adb109b2f35a98221f9f.php
deleted file mode 100755
index 3ce59b2b..00000000
--- a/storage/framework/views/6a7aaead1cd4adb109b2f35a98221f9f.php
+++ /dev/null
@@ -1,5 +0,0 @@
-startSection('title', __('Not Found')); ?>
-startSection('code', '404'); ?>
-startSection('message', __('Not Found')); ?>
-
-make('errors::minimal', array_diff_key(get_defined_vars(), ['__data' => 1, '__path' => 1]))->render(); ?>
\ No newline at end of file
diff --git a/storage/framework/views/7315ffcc42918a0596a5647be04a02e5.php b/storage/framework/views/7315ffcc42918a0596a5647be04a02e5.php
deleted file mode 100755
index 6d130971..00000000
--- a/storage/framework/views/7315ffcc42918a0596a5647be04a02e5.php
+++ /dev/null
@@ -1,157 +0,0 @@
-all() as $__key => $__value) {
- if (in_array($__key, $__propNames)) {
- $$__key = $$__key ?? $__value;
- } else {
- $__newAttributes[$__key] = $__value;
- }
-}
-
-$attributes = new \Illuminate\View\ComponentAttributeBag($__newAttributes);
-
-unset($__propNames);
-unset($__newAttributes);
-
-foreach (array_filter((['exception']), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
- $$__key = $$__key ?? $__value;
-}
-
-$__defined_vars = get_defined_vars();
-
-foreach ($attributes->all() as $__key => $__value) {
- if (array_key_exists($__key, $__defined_vars)) unset($$__key);
-}
-
-unset($__defined_vars, $__key, $__value); ?>
-
-
-
-
class()); ?>
-
-
- 'laravel-exceptions-renderer::components.file-with-line','data' => ['frame' => $exception->frames()->first(),'class' => '-mt-3 text-xs']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::file-with-line'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['frame' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($exception->frames()->first()),'class' => '-mt-3 text-xs']); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
- message()); ?>
-
-
-
-
-
-
-
- LARAVEL
- version()); ?>
-
-
- PHP
-
-
-
-
-
- 'laravel-exceptions-renderer::components.badge','data' => ['type' => 'error']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::badge'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['type' => 'error']); ?>
-
-
- 'laravel-exceptions-renderer::components.icons.alert','data' => ['class' => 'w-2.5 h-2.5']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::icons.alert'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['class' => 'w-2.5 h-2.5']); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
- UNHANDLED
- renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
- 'laravel-exceptions-renderer::components.badge','data' => ['type' => 'error','variant' => 'solid']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::badge'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['type' => 'error','variant' => 'solid']); ?>
- CODE code()); ?>
-
- renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
-
-
- 'laravel-exceptions-renderer::components.request-url','data' => ['exception' => $exception,'request' => $exception->request(),'class' => 'relative z-50']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::request-url'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['exception' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($exception),'request' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($exception->request()),'class' => 'relative z-50']); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/storage/framework/views/754addd99af21c53da38b869388c70f7.php b/storage/framework/views/754addd99af21c53da38b869388c70f7.php
deleted file mode 100755
index a746d058..00000000
--- a/storage/framework/views/754addd99af21c53da38b869388c70f7.php
+++ /dev/null
@@ -1,69 +0,0 @@
-all() as $__key => $__value) {
- if (in_array($__key, $__propNames)) {
- $$__key = $$__key ?? $__value;
- } else {
- $__newAttributes[$__key] = $__value;
- }
-}
-
-$attributes = new \Illuminate\View\ComponentAttributeBag($__newAttributes);
-
-unset($__propNames);
-unset($__newAttributes);
-
-foreach (array_filter((['routing']), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
- $$__key = $$__key ?? $__value;
-}
-
-$__defined_vars = get_defined_vars();
-
-foreach ($attributes->all() as $__key => $__value) {
- if (array_key_exists($__key, $__defined_vars)) unset($$__key);
-}
-
-unset($__defined_vars, $__key, $__value); ?>
-
-
-
Routing
-
- addLoop($__currentLoopData); foreach($__currentLoopData as $key => $value): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); $__empty_1 = false; ?>
-
- popLoop(); $loop = $__env->getLastLoop(); if ($__empty_1): ?>
-
-
- 'laravel-exceptions-renderer::components.empty-state','data' => ['message' => 'No routing context']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::empty-state'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['message' => 'No routing context']); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/storage/framework/views/777291c79d06e67372d280f7c72b4392.php b/storage/framework/views/777291c79d06e67372d280f7c72b4392.php
deleted file mode 100755
index 3e18aabc..00000000
--- a/storage/framework/views/777291c79d06e67372d280f7c72b4392.php
+++ /dev/null
@@ -1,78 +0,0 @@
-# class()); ?> - title(); ?>
-
-
-message(); ?>
-
-
-PHP
-
-Laravel version()); ?>
-
-request()->httpHost()); ?>
-
-
-## Stack Trace
-
-frames(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $index => $frame): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
- - file()); ?>:line()); ?>
-
-popLoop(); $loop = $__env->getLastLoop(); ?>
-
-previousExceptions()->isNotEmpty()): ?>
-## Previous previousExceptions()->count())); ?>
-
-previousExceptions(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $index => $previous): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
-
-### . class()); ?>
-
-
-message(); ?>
-
-
-frames(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $index => $frame): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
- - file()); ?>:line()); ?>
-
-popLoop(); $loop = $__env->getLastLoop(); ?>
-popLoop(); $loop = $__env->getLastLoop(); ?>
-
-
-## Request
-
-request()->method()); ?> request()->path(), '/')); ?>
-
-
-## Headers
-
-requestHeaders(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $value): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); $__empty_1 = false; ?>
-* ****:
-
-popLoop(); $loop = $__env->getLastLoop(); if ($__empty_1): ?>
-No header data available.
-
-
-## Route Context
-
-applicationRouteContext(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $name => $value): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); $__empty_1 = false; ?>
-:
-
-popLoop(); $loop = $__env->getLastLoop(); if ($__empty_1): ?>
-No routing data available.
-
-
-## Route Parameters
-
-applicationRouteParametersContext()): ?>
-
-
-
-No route parameter data available.
-
-
-## Database Queries
-
-applicationQueries(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as ['connectionName' => $connectionName, 'sql' => $sql, 'time' => $time]): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); $__empty_1 = false; ?>
-* - ( ms)
-popLoop(); $loop = $__env->getLastLoop(); if ($__empty_1): ?>
-No database queries detected.
-
-
\ No newline at end of file
diff --git a/storage/framework/views/8b9977afce0441eebc9a0bd1fb46f778.php b/storage/framework/views/8b9977afce0441eebc9a0bd1fb46f778.php
deleted file mode 100755
index 60df9002..00000000
--- a/storage/framework/views/8b9977afce0441eebc9a0bd1fb46f778.php
+++ /dev/null
@@ -1,80 +0,0 @@
-all() as $__key => $__value) {
- if (in_array($__key, $__propNames)) {
- $$__key = $$__key ?? $__value;
- } else {
- $__newAttributes[$__key] = $__value;
- }
-}
-
-$attributes = new \Illuminate\View\ComponentAttributeBag($__newAttributes);
-
-unset($__propNames);
-unset($__newAttributes);
-
-foreach (array_filter((['frame']), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
- $$__key = $$__key ?? $__value;
-}
-
-$__defined_vars = get_defined_vars();
-
-foreach ($attributes->all() as $__key => $__value) {
- if (array_key_exists($__key, $__defined_vars)) unset($$__key);
-}
-
-unset($__defined_vars, $__key, $__value); ?>
-
-
- previous()): ?>
-
-
-
- 'laravel-exceptions-renderer::components.formatted-source','data' => ['frame' => $frame,'className' => 'text-xs']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::formatted-source'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['frame' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($frame),'className' => 'text-xs']); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
-
Entrypoint
-
-
-
-
- 'laravel-exceptions-renderer::components.file-with-line','data' => ['frame' => $frame,'class' => 'text-xs']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::file-with-line'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['frame' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($frame),'class' => 'text-xs']); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/storage/framework/views/8c5f6437f4fa38903d79a2499f9f10c3.php b/storage/framework/views/8c5f6437f4fa38903d79a2499f9f10c3.php
deleted file mode 100755
index 8a1e7ba2..00000000
--- a/storage/framework/views/8c5f6437f4fa38903d79a2499f9f10c3.php
+++ /dev/null
@@ -1,44 +0,0 @@
-hasPages()): ?>
-
-
\ No newline at end of file
diff --git a/storage/framework/views/8ccf07814526c219b38460c975c96622.php b/storage/framework/views/8ccf07814526c219b38460c975c96622.php
deleted file mode 100755
index 379f1e94..00000000
--- a/storage/framework/views/8ccf07814526c219b38460c975c96622.php
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
\ No newline at end of file
diff --git a/storage/framework/views/939eb8cb617596f2e1aabfc5ec06db74.php b/storage/framework/views/939eb8cb617596f2e1aabfc5ec06db74.php
deleted file mode 100755
index 694d33b5..00000000
--- a/storage/framework/views/939eb8cb617596f2e1aabfc5ec06db74.php
+++ /dev/null
@@ -1,418 +0,0 @@
-
-
- 'laravel-exceptions-renderer::components.layout','data' => []] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::layout'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes([]); ?>
-
-
- 'laravel-exceptions-renderer::components.section-container','data' => ['class' => 'px-6 py-0 sm:py-0']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::section-container'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['class' => 'px-6 py-0 sm:py-0']); ?>
-
-
- 'laravel-exceptions-renderer::components.topbar','data' => ['title' => $exception->title(),'markdown' => $exceptionAsMarkdown]] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::topbar'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['title' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($exception->title()),'markdown' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($exceptionAsMarkdown)]); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
- renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
-
- 'laravel-exceptions-renderer::components.separator','data' => []] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::separator'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes([]); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
-
- 'laravel-exceptions-renderer::components.section-container','data' => ['class' => 'flex flex-col gap-8 py-0 sm:py-0']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::section-container'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['class' => 'flex flex-col gap-8 py-0 sm:py-0']); ?>
-
-
- 'laravel-exceptions-renderer::components.header','data' => ['exception' => $exception]] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::header'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['exception' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($exception)]); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
- renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
-
- 'laravel-exceptions-renderer::components.separator','data' => ['class' => '-mt-5 -z-10']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::separator'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['class' => '-mt-5 -z-10']); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
-
- 'laravel-exceptions-renderer::components.section-container','data' => ['class' => 'flex flex-col gap-8 pt-14']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::section-container'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['class' => 'flex flex-col gap-8 pt-14']); ?>
-
-
- 'laravel-exceptions-renderer::components.trace','data' => ['exception' => $exception]] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::trace'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['exception' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($exception)]); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
- previousExceptions()->isNotEmpty()): ?>
-
-
- 'laravel-exceptions-renderer::components.previous-exceptions','data' => ['exception' => $exception]] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::previous-exceptions'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['exception' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($exception)]); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
-
-
- 'laravel-exceptions-renderer::components.query','data' => ['queries' => $exception->applicationQueries()]] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::query'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['queries' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($exception->applicationQueries())]); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
- renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
-
- 'laravel-exceptions-renderer::components.separator','data' => []] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::separator'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes([]); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
-
- 'laravel-exceptions-renderer::components.section-container','data' => ['class' => 'flex flex-col gap-12']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::section-container'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['class' => 'flex flex-col gap-12']); ?>
-
-
- 'laravel-exceptions-renderer::components.request-header','data' => ['headers' => $exception->requestHeaders()]] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::request-header'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['headers' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($exception->requestHeaders())]); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
-
- 'laravel-exceptions-renderer::components.request-body','data' => ['body' => $exception->requestBody()]] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::request-body'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['body' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($exception->requestBody())]); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
-
- 'laravel-exceptions-renderer::components.routing','data' => ['routing' => $exception->applicationRouteContext()]] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::routing'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['routing' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($exception->applicationRouteContext())]); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
-
- 'laravel-exceptions-renderer::components.routing-parameter','data' => ['routeParameters' => $exception->applicationRouteParametersContext()]] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::routing-parameter'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['routeParameters' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($exception->applicationRouteParametersContext())]); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
- renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
-
- 'laravel-exceptions-renderer::components.separator','data' => []] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::separator'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes([]); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
- runningUnitTests() && ! app()->runningInConsole()): ?>
-
-
- 'laravel-exceptions-renderer::components.section-container','data' => ['class' => 'pb-0 sm:pb-0']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::section-container'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['class' => 'pb-0 sm:pb-0']); ?>
-
-
- 'laravel-exceptions-renderer::components.laravel-ascii-spotlight','data' => []] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::laravel-ascii-spotlight'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes([]); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
- renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
- renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/storage/framework/views/9fa1b9abba3a4cc55010af37ac53b5d0.php b/storage/framework/views/9fa1b9abba3a4cc55010af37ac53b5d0.php
deleted file mode 100755
index 8475d134..00000000
--- a/storage/framework/views/9fa1b9abba3a4cc55010af37ac53b5d0.php
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
-
-
-
- yieldContent('title'); ?>
-
-
-
-
-
-
-
-
-
-
- yieldContent('code'); ?>
-
-
-
- yieldContent('message'); ?>
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/storage/framework/views/a13682949a8a3afd650c3981b691d454.php b/storage/framework/views/a13682949a8a3afd650c3981b691d454.php
deleted file mode 100755
index e09cc39b..00000000
--- a/storage/framework/views/a13682949a8a3afd650c3981b691d454.php
+++ /dev/null
@@ -1,79 +0,0 @@
-all() as $__key => $__value) {
- if (in_array($__key, $__propNames)) {
- $$__key = $$__key ?? $__value;
- } else {
- $__newAttributes[$__key] = $__value;
- }
-}
-
-$attributes = new \Illuminate\View\ComponentAttributeBag($__newAttributes);
-
-unset($__propNames);
-unset($__newAttributes);
-
-foreach (array_filter((['body']), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
- $$__key = $$__key ?? $__value;
-}
-
-$__defined_vars = get_defined_vars();
-
-foreach ($attributes->all() as $__key => $__value) {
- if (array_key_exists($__key, $__defined_vars)) unset($$__key);
-}
-
-unset($__defined_vars, $__key, $__value); ?>
-
-
-
Body
-
-
-
-
- 'laravel-exceptions-renderer::components.syntax-highlight','data' => ['code' => $body,'language' => 'json']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::syntax-highlight'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['code' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($body),'language' => 'json']); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
-
-
- 'laravel-exceptions-renderer::components.empty-state','data' => ['message' => 'No request body']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::empty-state'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['message' => 'No request body']); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/storage/framework/views/a32b10b44eee0941ea0a3f2990b69de8.php b/storage/framework/views/a32b10b44eee0941ea0a3f2990b69de8.php
deleted file mode 100755
index 98152fbe..00000000
--- a/storage/framework/views/a32b10b44eee0941ea0a3f2990b69de8.php
+++ /dev/null
@@ -1,158 +0,0 @@
-startSection('title', 'Log Attività '); ?>
-startSection('page_title', 'Log Attività '); ?>
-
-startSection('breadcrumbs'); ?>
- Admin
- Log AttivitÃ
-stopSection(); ?>
-
-startSection('content'); ?>
-
-
-
-
-
-
-
-
-
-
- | Data/Ora |
- Utente |
- Azione |
- Modulo |
- Descrizione |
- IP |
-
-
-
- addLoop($__currentLoopData); foreach($__currentLoopData as $log): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); $__empty_1 = false; ?>
-
- | created_at->format('d/m/Y H:i:s')); ?> |
- user->name ?? 'Sistema'); ?> |
-
-
- action); ?>
-
-
- |
- module); ?> |
- description); ?> |
- ip_address); ?> |
-
- popLoop(); $loop = $__env->getLastLoop(); if ($__empty_1): ?>
-
- | Nessun log presente |
-
-
-
-
-
- links()); ?>
-
-
-
-
-
-stopSection(); ?>
-
-startSection('scripts'); ?>
-
-stopSection(); ?>
-make('admin.layout', array_diff_key(get_defined_vars(), ['__data' => 1, '__path' => 1]))->render(); ?>
\ No newline at end of file
diff --git a/storage/framework/views/ad087901c72ad7a36a2c6365638410c2.php b/storage/framework/views/ad087901c72ad7a36a2c6365638410c2.php
deleted file mode 100755
index 6c6b157a..00000000
--- a/storage/framework/views/ad087901c72ad7a36a2c6365638410c2.php
+++ /dev/null
@@ -1,35 +0,0 @@
-all() as $__key => $__value) {
- if (in_array($__key, $__propNames)) {
- $$__key = $$__key ?? $__value;
- } else {
- $__newAttributes[$__key] = $__value;
- }
-}
-
-$attributes = new \Illuminate\View\ComponentAttributeBag($__newAttributes);
-
-unset($__propNames);
-unset($__newAttributes);
-
-foreach (array_filter((['message']), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
- $$__key = $$__key ?? $__value;
-}
-
-$__defined_vars = get_defined_vars();
-
-foreach ($attributes->all() as $__key => $__value) {
- if (array_key_exists($__key, $__defined_vars)) unset($$__key);
-}
-
-unset($__defined_vars, $__key, $__value); ?>
-
-
- //
-
-
-
\ No newline at end of file
diff --git a/storage/framework/views/aeec4b923f181d6dfbdbdee6371b3a13.php b/storage/framework/views/aeec4b923f181d6dfbdbdee6371b3a13.php
deleted file mode 100755
index b4598b14..00000000
--- a/storage/framework/views/aeec4b923f181d6dfbdbdee6371b3a13.php
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
\ No newline at end of file
diff --git a/storage/framework/views/af35a05c8ef83518f24824985b6913aa.php b/storage/framework/views/af35a05c8ef83518f24824985b6913aa.php
deleted file mode 100755
index 0960f8ef..00000000
--- a/storage/framework/views/af35a05c8ef83518f24824985b6913aa.php
+++ /dev/null
@@ -1,114 +0,0 @@
-all() as $__key => $__value) {
- if (in_array($__key, $__propNames)) {
- $$__key = $$__key ?? $__value;
- } else {
- $__newAttributes[$__key] = $__value;
- }
-}
-
-$attributes = new \Illuminate\View\ComponentAttributeBag($__newAttributes);
-
-unset($__propNames);
-unset($__newAttributes);
-
-foreach (array_filter((['exception']), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
- $$__key = $$__key ?? $__value;
-}
-
-$__defined_vars = get_defined_vars();
-
-foreach ($attributes->all() as $__key => $__value) {
- if (array_key_exists($__key, $__defined_vars)) unset($$__key);
-}
-
-unset($__defined_vars, $__key, $__value); ?>
-
-
-
-
-
-
- 'laravel-exceptions-renderer::components.icons.alert','data' => ['class' => 'w-2.5 h-2.5 text-blue-500 dark:text-emerald-500']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::icons.alert'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['class' => 'w-2.5 h-2.5 text-blue-500 dark:text-emerald-500']); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
Exception trace
- previousExceptions()->isNotEmpty()): ?>
-
- previousExceptions()->count()); ?> previous previousExceptions()->count())); ?>
-
-
-
-
-
-
- frameGroups(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $group): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
-
-
-
- 'laravel-exceptions-renderer::components.vendor-frames','data' => ['frames' => $group['frames']]] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::vendor-frames'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['frames' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($group['frames'])]); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
- addLoop($__currentLoopData); foreach($__currentLoopData as $frame): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
-
-
- 'laravel-exceptions-renderer::components.frame','data' => ['frame' => $frame]] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::frame'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['frame' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($frame)]); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
- popLoop(); $loop = $__env->getLastLoop(); ?>
-
- popLoop(); $loop = $__env->getLastLoop(); ?>
-
-
-
\ No newline at end of file
diff --git a/storage/framework/views/b6646e88d61568a5ac9c3b4514e32f0b.php b/storage/framework/views/b6646e88d61568a5ac9c3b4514e32f0b.php
deleted file mode 100755
index 7cca3069..00000000
--- a/storage/framework/views/b6646e88d61568a5ac9c3b4514e32f0b.php
+++ /dev/null
@@ -1,98 +0,0 @@
- false,
- 'startingLine' => 1,
- 'highlightedLine' => null,
- 'truncate' => false,
-]));
-
-foreach ($attributes->all() as $__key => $__value) {
- if (in_array($__key, $__propNames)) {
- $$__key = $$__key ?? $__value;
- } else {
- $__newAttributes[$__key] = $__value;
- }
-}
-
-$attributes = new \Illuminate\View\ComponentAttributeBag($__newAttributes);
-
-unset($__propNames);
-unset($__newAttributes);
-
-foreach (array_filter(([
- 'code',
- 'language',
- 'editor' => false,
- 'startingLine' => 1,
- 'highlightedLine' => null,
- 'truncate' => false,
-]), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
- $$__key = $$__key ?? $__value;
-}
-
-$__defined_vars = get_defined_vars();
-
-foreach ($attributes->all() as $__key => $__value) {
- if (array_key_exists($__key, $__defined_vars)) unset($$__key);
-}
-
-unset($__defined_vars, $__key, $__value); ?>
-
-' : '';
-
- if ($editor) {
- $lines = explode("\n", $code);
-
- foreach ($lines as $index => $line) {
- $lineNumber = $startingLine + $index;
- $highlight = $highlightedLine === $index;
- $lineClass = implode(' ', [
- 'block px-4 py-1 h-7 even:bg-white odd:bg-white/2 even:dark:bg-white/2 odd:dark:bg-white/4',
- $highlight ? 'bg-rose-200! dark:bg-rose-900!' : '',
- ]);
- $lineNumberClass = implode(' ', [
- 'mr-6 text-neutral-500! dark:text-neutral-600!',
- $highlight ? 'dark:text-white!' : '',
- ]);
-
- $fallback .= '';
- $fallback .= '' . $lineNumber . '';
- $fallback .= htmlspecialchars($line);
- $fallback .= '';
- }
-
- } else {
- $fallback .= htmlspecialchars($code);
- }
-
- $fallback .= '
';
-?>
-
-
-
\ No newline at end of file
diff --git a/storage/framework/views/ccb661205c3b97b26f74821bf1594cbb.php b/storage/framework/views/ccb661205c3b97b26f74821bf1594cbb.php
deleted file mode 100755
index 2e087a08..00000000
--- a/storage/framework/views/ccb661205c3b97b26f74821bf1594cbb.php
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
\ No newline at end of file
diff --git a/storage/framework/views/dbf1aba50187f5a88c0059a9e5682127.php b/storage/framework/views/dbf1aba50187f5a88c0059a9e5682127.php
deleted file mode 100755
index 08ec2dbb..00000000
--- a/storage/framework/views/dbf1aba50187f5a88c0059a9e5682127.php
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
\ No newline at end of file
diff --git a/storage/framework/views/e0f3579b0db5b4089af4a16d6fb7ed18.php b/storage/framework/views/e0f3579b0db5b4089af4a16d6fb7ed18.php
deleted file mode 100755
index c281b2f4..00000000
--- a/storage/framework/views/e0f3579b0db5b4089af4a16d6fb7ed18.php
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
\ No newline at end of file
diff --git a/storage/framework/views/e37af6fdbe0d2e13adaf2a765cfb077b.php b/storage/framework/views/e37af6fdbe0d2e13adaf2a765cfb077b.php
deleted file mode 100755
index 95a6c37e..00000000
--- a/storage/framework/views/e37af6fdbe0d2e13adaf2a765cfb077b.php
+++ /dev/null
@@ -1,57 +0,0 @@
-all() as $__key => $__value) {
- if (in_array($__key, $__propNames)) {
- $$__key = $$__key ?? $__value;
- } else {
- $__newAttributes[$__key] = $__value;
- }
-}
-
-$attributes = new \Illuminate\View\ComponentAttributeBag($__newAttributes);
-
-unset($__propNames);
-unset($__newAttributes);
-
-foreach (array_filter((['code', 'highlightedLine']), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
- $$__key = $$__key ?? $__value;
-}
-
-$__defined_vars = get_defined_vars();
-
-foreach ($attributes->all() as $__key => $__value) {
- if (array_key_exists($__key, $__defined_vars)) unset($$__key);
-}
-
-unset($__defined_vars, $__key, $__value); ?>
-
-
-
->
-
-
- 'laravel-exceptions-renderer::components.syntax-highlight','data' => ['code' => $code,'language' => 'php','editor' => true,'startingLine' => max(1, $highlightedLine - 5),'highlightedLine' => min(5, $highlightedLine - 1),'class' => 'overflow-x-auto']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::syntax-highlight'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['code' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($code),'language' => 'php','editor' => true,'starting-line' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute(max(1, $highlightedLine - 5)),'highlighted-line' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute(min(5, $highlightedLine - 1)),'class' => 'overflow-x-auto']); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/storage/framework/views/e7d59d4817278e963603075f56062214.php b/storage/framework/views/e7d59d4817278e963603075f56062214.php
deleted file mode 100755
index 7d9fb92e..00000000
--- a/storage/framework/views/e7d59d4817278e963603075f56062214.php
+++ /dev/null
@@ -1,61 +0,0 @@
-
-
-
-
- 'laravel-exceptions-renderer::components.icons.laravel-ascii','data' => []] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::icons.laravel-ascii'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes([]); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
-
- 'laravel-exceptions-renderer::components.icons.laravel-ascii','data' => []] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::icons.laravel-ascii'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes([]); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/storage/framework/views/e8f60d5f5b2a4c688f1bc12477b209df.php b/storage/framework/views/e8f60d5f5b2a4c688f1bc12477b209df.php
deleted file mode 100755
index 4a5ca4aa..00000000
--- a/storage/framework/views/e8f60d5f5b2a4c688f1bc12477b209df.php
+++ /dev/null
@@ -1,108 +0,0 @@
-
-
-
-
-
-
- Accedi -
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/storage/framework/views/eaac5a8a0151a978b555cc328e81a8ac.php b/storage/framework/views/eaac5a8a0151a978b555cc328e81a8ac.php
deleted file mode 100755
index 2f466119..00000000
--- a/storage/framework/views/eaac5a8a0151a978b555cc328e81a8ac.php
+++ /dev/null
@@ -1,4 +0,0 @@
-merge(['class' => "h-0 w-full relative"])); ?>>
-
-
-
\ No newline at end of file
diff --git a/storage/framework/views/f03e8af4a6092d6881e7ed70e09278fa.php b/storage/framework/views/f03e8af4a6092d6881e7ed70e09278fa.php
deleted file mode 100755
index 973f9eb8..00000000
--- a/storage/framework/views/f03e8af4a6092d6881e7ed70e09278fa.php
+++ /dev/null
@@ -1,167 +0,0 @@
-all() as $__key => $__value) {
- if (in_array($__key, $__propNames)) {
- $$__key = $$__key ?? $__value;
- } else {
- $__newAttributes[$__key] = $__value;
- }
-}
-
-$attributes = new \Illuminate\View\ComponentAttributeBag($__newAttributes);
-
-unset($__propNames);
-unset($__newAttributes);
-
-foreach (array_filter((['exception', 'request']), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
- $$__key = $$__key ?? $__value;
-}
-
-$__defined_vars = get_defined_vars();
-
-foreach ($attributes->all() as $__key => $__value) {
- if (array_key_exists($__key, $__defined_vars)) unset($$__key);
-}
-
-unset($__defined_vars, $__key, $__value); ?>
-
-merge(['class' => "bg-white dark:bg-[#1a1a1a] border border-neutral-200 dark:border-white/10 rounded-lg flex items-center justify-between h-10 px-2 shadow-xs"])); ?>
-
->
-
-
-
- 'laravel-exceptions-renderer::components.badge','data' => ['type' => 'error','variant' => 'solid']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::badge'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['type' => 'error','variant' => 'solid']); ?>
-
-
- 'laravel-exceptions-renderer::components.icons.alert','data' => ['class' => 'w-2.5 h-2.5']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::icons.alert'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['class' => 'w-2.5 h-2.5']); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
- httpStatusCode()); ?>
-
- renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
- 'laravel-exceptions-renderer::components.http-method','data' => ['method' => ''.e($request->method()).'']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::http-method'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['method' => ''.e($request->method()).'']); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
- fullUrl()); ?>
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/storage/framework/views/f058bd7a6e36e22fa0a2c2b274000562.php b/storage/framework/views/f058bd7a6e36e22fa0a2c2b274000562.php
deleted file mode 100755
index e4d7bd1c..00000000
--- a/storage/framework/views/f058bd7a6e36e22fa0a2c2b274000562.php
+++ /dev/null
@@ -1,51 +0,0 @@
- 'ltr']));
-
-foreach ($attributes->all() as $__key => $__value) {
- if (in_array($__key, $__propNames)) {
- $$__key = $$__key ?? $__value;
- } else {
- $__newAttributes[$__key] = $__value;
- }
-}
-
-$attributes = new \Illuminate\View\ComponentAttributeBag($__newAttributes);
-
-unset($__propNames);
-unset($__newAttributes);
-
-foreach (array_filter((['frame', 'direction' => 'ltr']), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
- $$__key = $$__key ?? $__value;
-}
-
-$__defined_vars = get_defined_vars();
-
-foreach ($attributes->all() as $__key => $__value) {
- if (array_key_exists($__key, $__defined_vars)) unset($$__key);
-}
-
-unset($__defined_vars, $__key, $__value); ?>
-
-file();
- $line = $frame->line();
-?>
-
-merge(['class' => 'truncate font-mono text-xs text-neutral-500 dark:text-neutral-400'])); ?>
-
- dir=""
->
-
-
-
- :
-
-
- :
-
-
-
-
\ No newline at end of file
diff --git a/storage/framework/views/f12020bb89b8233e2109b511817b624b.php b/storage/framework/views/f12020bb89b8233e2109b511817b624b.php
deleted file mode 100755
index 562ad09a..00000000
--- a/storage/framework/views/f12020bb89b8233e2109b511817b624b.php
+++ /dev/null
@@ -1,83 +0,0 @@
-all() as $__key => $__value) {
- if (in_array($__key, $__propNames)) {
- $$__key = $$__key ?? $__value;
- } else {
- $__newAttributes[$__key] = $__value;
- }
-}
-
-$attributes = new \Illuminate\View\ComponentAttributeBag($__newAttributes);
-
-unset($__propNames);
-unset($__newAttributes);
-
-foreach (array_filter((['method']), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
- $$__key = $$__key ?? $__value;
-}
-
-$__defined_vars = get_defined_vars();
-
-foreach ($attributes->all() as $__key => $__value) {
- if (array_key_exists($__key, $__defined_vars)) unset($$__key);
-}
-
-unset($__defined_vars, $__key, $__value); ?>
-
- 'default',
- 'POST' => 'success',
- 'PUT', 'PATCH' => 'primary',
- 'DELETE' => 'error',
- default => 'default',
-};
-?>
-
-
-
- 'laravel-exceptions-renderer::components.badge','data' => ['type' => ''.e($type).'']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::badge'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['type' => ''.e($type).'']); ?>
-
-
- 'laravel-exceptions-renderer::components.icons.globe','data' => ['class' => 'w-2.5 h-2.5']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('laravel-exceptions-renderer::icons.globe'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['class' => 'w-2.5 h-2.5']); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
- renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/storage/framework/views/f2fa1cf0aa4626e33e581418a60abb0a.php b/storage/framework/views/f2fa1cf0aa4626e33e581418a60abb0a.php
deleted file mode 100755
index b9cf714b..00000000
--- a/storage/framework/views/f2fa1cf0aa4626e33e581418a60abb0a.php
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
\ No newline at end of file
diff --git a/storage/framework/views/fae7aaf520edfdd27792182a3a067c71.php b/storage/framework/views/fae7aaf520edfdd27792182a3a067c71.php
deleted file mode 100755
index 28a584b1..00000000
--- a/storage/framework/views/fae7aaf520edfdd27792182a3a067c71.php
+++ /dev/null
@@ -1,48 +0,0 @@
-all() as $__key => $__value) {
- if (in_array($__key, $__propNames)) {
- $$__key = $$__key ?? $__value;
- } else {
- $__newAttributes[$__key] = $__value;
- }
-}
-
-$attributes = new \Illuminate\View\ComponentAttributeBag($__newAttributes);
-
-unset($__propNames);
-unset($__newAttributes);
-
-foreach (array_filter((['headers']), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
- $$__key = $$__key ?? $__value;
-}
-
-$__defined_vars = get_defined_vars();
-
-foreach ($attributes->all() as $__key => $__value) {
- if (array_key_exists($__key, $__defined_vars)) unset($$__key);
-}
-
-unset($__defined_vars, $__key, $__value); ?>
-
-
-
Headers
-
- addLoop($__currentLoopData); foreach($__currentLoopData as $key => $value): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
-
- popLoop(); $loop = $__env->getLastLoop(); ?>
-
-
-
\ No newline at end of file
diff --git a/storage/framework/views/faf704a674ad044464b67e881c35189f.php b/storage/framework/views/faf704a674ad044464b67e881c35189f.php
deleted file mode 100755
index c2ec286c..00000000
--- a/storage/framework/views/faf704a674ad044464b67e881c35189f.php
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
\ No newline at end of file
diff --git a/storage/framework/views/ffa5a43c43745f4f13f6522763e47af3.php b/storage/framework/views/ffa5a43c43745f4f13f6522763e47af3.php
deleted file mode 100755
index ce45f9cb..00000000
--- a/storage/framework/views/ffa5a43c43745f4f13f6522763e47af3.php
+++ /dev/null
@@ -1,115 +0,0 @@
-all() as $__key => $__value) {
- if (in_array($__key, $__propNames)) {
- $$__key = $$__key ?? $__value;
- } else {
- $__newAttributes[$__key] = $__value;
- }
-}
-
-$attributes = new \Illuminate\View\ComponentAttributeBag($__newAttributes);
-
-unset($__propNames);
-unset($__newAttributes);
-
-foreach (array_filter((['title', 'markdown']), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
- $$__key = $$__key ?? $__value;
-}
-
-$__defined_vars = get_defined_vars();
-
-foreach ($attributes->all() as $__key => $__value) {
- if (array_key_exists($__key, $__defined_vars)) unset($$__key);
-}
-
-unset($__defined_vars, $__key, $__value); ?>
-
-
-
-
-
-
-
-
-
\ No newline at end of file