diff --git a/app/Http/Controllers/AssetController.php b/app/Http/Controllers/AssetController.php
index cc9af28..d9c59ce 100644
--- a/app/Http/Controllers/AssetController.php
+++ b/app/Http/Controllers/AssetController.php
@@ -9,34 +9,46 @@ use ZipArchive;
class AssetController extends Controller
{
- public function export(): \Symfony\Component\HttpFoundation\StreamedResponse
+ public function export()
{
$user = auth()->user();
if (!$user || !$user->roles()->where('name', 'ROLE_ADMIN')->exists()) {
abort(403, 'Forbidden');
}
- $storagePublic = storage_path('app/public');
+ try {
+ $storagePublic = storage_path('app/public');
- if (!is_dir($storagePublic)) {
- mkdir($storagePublic, 0775, true);
+ if (!is_dir($storagePublic)) {
+ mkdir($storagePublic, 0775, true);
+ }
+
+ // Create ZIP in memory
+ $zip = new ZipArchive();
+ $tempFile = tempnam(sys_get_temp_dir(), 'speedbb_');
+
+ if ($zip->open($tempFile, ZipArchive::CREATE | ZipArchive::OVERWRITE) !== true) {
+ return response()->json(['message' => 'Failed to create ZIP'], 500);
+ }
+
+ // Add a manifest file to ensure ZIP is created even if empty
+ $zip->addFromString('MANIFEST.txt', "SpeedBB Assets Export\nExported: " . date('Y-m-d H:i:s') . "\n");
+ $this->addDirectoryToZip($zip, $storagePublic, '');
+ $zip->close();
+
+ if (!file_exists($tempFile)) {
+ return response()->json(['message' => 'ZIP file was not created'], 500);
+ }
+
+ $filename = 'assets-'.date('YmdHis').'.zip';
+
+ return response()->file($tempFile, [
+ 'Content-Type' => 'application/zip',
+ 'Content-Disposition' => 'attachment; filename="'.$filename.'"',
+ ])->deleteFileAfterSend(true);
+ } catch (\Exception $e) {
+ return response()->json(['message' => 'Export error: '.$e->getMessage()], 500);
}
-
- $zip = new ZipArchive();
- $zipPath = storage_path('exports/assets-'.date('YmdHis').'.zip');
-
- if (!is_dir(storage_path('exports'))) {
- mkdir(storage_path('exports'), 0775, true);
- }
-
- if ($zip->open($zipPath, ZipArchive::CREATE) !== true) {
- abort(500, 'Failed to create ZIP archive');
- }
-
- $this->addDirectoryToZip($zip, $storagePublic, '');
- $zip->close();
-
- return response()->download($zipPath)->deleteFileAfterSend(true);
}
public function import(Request $request): JsonResponse
diff --git a/storage/exports/assets-20260516155140.zip b/storage/exports/assets-20260516155140.zip
new file mode 100644
index 0000000..14e1e48
Binary files /dev/null and b/storage/exports/assets-20260516155140.zip differ
diff --git a/storage/framework/views/013fa83e3a15f84ca2027895ebafa32c.php b/storage/framework/views/013fa83e3a15f84ca2027895ebafa32c.php
deleted file mode 100644
index e8f87a0..0000000
--- a/storage/framework/views/013fa83e3a15f84ca2027895ebafa32c.php
+++ /dev/null
@@ -1,103 +0,0 @@
-
-
- $__env->getContainer()->make(Illuminate\View\Factory::class)->make('mail::layout'),'data' => []] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('mail::layout'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes([]); ?>
-
- slot('header', null, []); ?>
-
-
- $__env->getContainer()->make(Illuminate\View\Factory::class)->make('mail::header'),'data' => ['url' => config('app.url')]] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('mail::header'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['url' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute(config('app.url'))]); ?>
-
-
- renderComponent(); ?>
-
-
-
-
-
-
-
-
-
- endSlot(); ?>
-
-
-
-
-
-
-
- slot('subcopy', null, []); ?>
-
-
- $__env->getContainer()->make(Illuminate\View\Factory::class)->make('mail::subcopy'),'data' => []] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('mail::subcopy'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes([]); ?>
-
-
- renderComponent(); ?>
-
-
-
-
-
-
-
-
-
- endSlot(); ?>
-
-
-
- slot('footer', null, []); ?>
-
-
- $__env->getContainer()->make(Illuminate\View\Factory::class)->make('mail::footer'),'data' => []] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('mail::footer'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes([]); ?>
- © . get('All rights reserved.'); ?>
- renderComponent(); ?>
-
-
-
-
-
-
-
-
-
- endSlot(); ?>
- renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/storage/framework/views/057f9db93fc46a92ba183b9e15cf095a.php b/storage/framework/views/057f9db93fc46a92ba183b9e15cf095a.php
deleted file mode 100644
index 7dc1531..0000000
--- a/storage/framework/views/057f9db93fc46a92ba183b9e15cf095a.php
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/storage/framework/views/0777d30c9331317eaf33a5f642a356e3.php b/storage/framework/views/0777d30c9331317eaf33a5f642a356e3.php
deleted file mode 100644
index 379ad6f..0000000
--- a/storage/framework/views/0777d30c9331317eaf33a5f642a356e3.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/07ec8625cbcd3d56572107bd41e1a0f8.php b/storage/framework/views/07ec8625cbcd3d56572107bd41e1a0f8.php
deleted file mode 100644
index 0b8e134..0000000
--- a/storage/framework/views/07ec8625cbcd3d56572107bd41e1a0f8.php
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
\ No newline at end of file
diff --git a/storage/framework/views/0b50c28f427fcf1fe5dd1154a47595a7.php b/storage/framework/views/0b50c28f427fcf1fe5dd1154a47595a7.php
deleted file mode 100644
index a391be1..0000000
--- a/storage/framework/views/0b50c28f427fcf1fe5dd1154a47595a7.php
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
\ No newline at end of file
diff --git a/storage/framework/views/11af759670e7414739b6a22585e2d746.php b/storage/framework/views/11af759670e7414739b6a22585e2d746.php
deleted file mode 100644
index c759d96..0000000
--- a/storage/framework/views/11af759670e7414739b6a22585e2d746.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/15785021a3acd6ac5ba9bc43fa4e58bd.php b/storage/framework/views/15785021a3acd6ac5ba9bc43fa4e58bd.php
deleted file mode 100644
index 4fda9b1..0000000
--- a/storage/framework/views/15785021a3acd6ac5ba9bc43fa4e58bd.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/15dc2c063b52aa2fc1b6bd7d29fbbae7.php b/storage/framework/views/15dc2c063b52aa2fc1b6bd7d29fbbae7.php
deleted file mode 100644
index 8cbaa93..0000000
--- a/storage/framework/views/15dc2c063b52aa2fc1b6bd7d29fbbae7.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/1d6203333bb2fe3f6a520e6407f710a1.php b/storage/framework/views/1d6203333bb2fe3f6a520e6407f710a1.php
deleted file mode 100644
index d451a0a..0000000
--- a/storage/framework/views/1d6203333bb2fe3f6a520e6407f710a1.php
+++ /dev/null
@@ -1,393 +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(); ?>
-
-
-
-
-
-
-
-
-
-
-
-
- '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(); ?>
-
-
-
-
-
-
-
-
-
-
-
-
- '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/1d66ffb79aa68f54b4ea4de52b2f8c55.php b/storage/framework/views/1d66ffb79aa68f54b4ea4de52b2f8c55.php
deleted file mode 100644
index 6e4272d..0000000
--- a/storage/framework/views/1d66ffb79aa68f54b4ea4de52b2f8c55.php
+++ /dev/null
@@ -1,3 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/storage/framework/views/1d8cc16fecc765075ddcedb44d3c4bc4.php b/storage/framework/views/1d8cc16fecc765075ddcedb44d3c4bc4.php
deleted file mode 100644
index eb0dde9..0000000
--- a/storage/framework/views/1d8cc16fecc765075ddcedb44d3c4bc4.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/21857bd15e01d6970cd5bd7ed3d859c1.php b/storage/framework/views/21857bd15e01d6970cd5bd7ed3d859c1.php
deleted file mode 100644
index 850510a..0000000
--- a/storage/framework/views/21857bd15e01d6970cd5bd7ed3d859c1.php
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
\ No newline at end of file
diff --git a/storage/framework/views/23c088ffc706110bba6d07d960e0e06e.php b/storage/framework/views/23c088ffc706110bba6d07d960e0e06e.php
deleted file mode 100644
index c334534..0000000
--- a/storage/framework/views/23c088ffc706110bba6d07d960e0e06e.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/2daf89188a43d24cc05119fc8332ac06.php b/storage/framework/views/2daf89188a43d24cc05119fc8332ac06.php
deleted file mode 100644
index fb42c03..0000000
--- a/storage/framework/views/2daf89188a43d24cc05119fc8332ac06.php
+++ /dev/null
@@ -1,104 +0,0 @@
-
-
- $__env->getContainer()->make(Illuminate\View\Factory::class)->make('mail::layout'),'data' => []] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('mail::layout'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes([]); ?>
-
- slot('header', null, []); ?>
-
-
- $__env->getContainer()->make(Illuminate\View\Factory::class)->make('mail::header'),'data' => ['url' => config('app.url')]] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('mail::header'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['url' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute(config('app.url'))]); ?>
-
-
- renderComponent(); ?>
-
-
-
-
-
-
-
-
-
- endSlot(); ?>
-
-
-
-
-
-
-
- slot('subcopy', null, []); ?>
-
-
- $__env->getContainer()->make(Illuminate\View\Factory::class)->make('mail::subcopy'),'data' => []] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('mail::subcopy'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes([]); ?>
-
-
- renderComponent(); ?>
-
-
-
-
-
-
-
-
-
- endSlot(); ?>
-
-
-
- slot('footer', null, []); ?>
-
-
- $__env->getContainer()->make(Illuminate\View\Factory::class)->make('mail::footer'),'data' => []] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('mail::footer'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes([]); ?>
-© .
-
- renderComponent(); ?>
-
-
-
-
-
-
-
-
-
- endSlot(); ?>
- renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/storage/framework/views/336aaa63433059b9ffb30f960b8a5925.php b/storage/framework/views/336aaa63433059b9ffb30f960b8a5925.php
deleted file mode 100644
index b13333d..0000000
--- a/storage/framework/views/336aaa63433059b9ffb30f960b8a5925.php
+++ /dev/null
@@ -1,60 +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(); ?>
-
-## 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/360e8dd9889af4bb66d0fea73cb35b45.php b/storage/framework/views/360e8dd9889af4bb66d0fea73cb35b45.php
deleted file mode 100644
index 3c00dfd..0000000
--- a/storage/framework/views/360e8dd9889af4bb66d0fea73cb35b45.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/362f4279a206ddd23d19419cb8a80d22.php b/storage/framework/views/362f4279a206ddd23d19419cb8a80d22.php
deleted file mode 100644
index 604335e..0000000
--- a/storage/framework/views/362f4279a206ddd23d19419cb8a80d22.php
+++ /dev/null
@@ -1,64 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-|
-
- |
-
-
-
-
-
- |
-
-
-
-
-
\ No newline at end of file
diff --git a/storage/framework/views/3a9c9f3a7d0ccea72f6b95fec86e145c.php b/storage/framework/views/3a9c9f3a7d0ccea72f6b95fec86e145c.php
deleted file mode 100644
index 39916e9..0000000
--- a/storage/framework/views/3a9c9f3a7d0ccea72f6b95fec86e145c.php
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/storage/framework/views/3bb5d24fb80512f1203980ffa81787c1.php b/storage/framework/views/3bb5d24fb80512f1203980ffa81787c1.php
deleted file mode 100644
index d227d5d..0000000
--- a/storage/framework/views/3bb5d24fb80512f1203980ffa81787c1.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/3ffbc503d2b198ab7725186614e31607.php b/storage/framework/views/3ffbc503d2b198ab7725186614e31607.php
deleted file mode 100644
index 0b00fb9..0000000
--- a/storage/framework/views/3ffbc503d2b198ab7725186614e31607.php
+++ /dev/null
@@ -1,3 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/storage/framework/views/5585b6499c409406588afa0c74f419b7.php b/storage/framework/views/5585b6499c409406588afa0c74f419b7.php
deleted file mode 100644
index b4b43a0..0000000
--- a/storage/framework/views/5585b6499c409406588afa0c74f419b7.php
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
\ No newline at end of file
diff --git a/storage/framework/views/65249ea69e0cb28229e12ca200d259b4.php b/storage/framework/views/65249ea69e0cb28229e12ca200d259b4.php
deleted file mode 100644
index 517f2e3..0000000
--- a/storage/framework/views/65249ea69e0cb28229e12ca200d259b4.php
+++ /dev/null
@@ -1,108 +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
-
-
-
- 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/71f6ab8356460c816a3ca339f9e449e0.php b/storage/framework/views/71f6ab8356460c816a3ca339f9e449e0.php
deleted file mode 100644
index fc3c352..0000000
--- a/storage/framework/views/71f6ab8356460c816a3ca339f9e449e0.php
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
\ No newline at end of file
diff --git a/storage/framework/views/904965cf62c030cb657066b94ad16c35.php b/storage/framework/views/904965cf62c030cb657066b94ad16c35.php
deleted file mode 100644
index 449d335..0000000
--- a/storage/framework/views/904965cf62c030cb657066b94ad16c35.php
+++ /dev/null
@@ -1,101 +0,0 @@
-
-
- $__env->getContainer()->make(Illuminate\View\Factory::class)->make('mail::message'),'data' => []] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('mail::message'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes([]); ?>
-
-
-#
-
-
-
-# get('Whoops!'); ?>
-
-# get('Hello!'); ?>
-
-
-
-
-addLoop($__currentLoopData); foreach($__currentLoopData as $line): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
-
-
-
-popLoop(); $loop = $__env->getLastLoop(); ?>
-
-
-
- $level,
- default => 'primary',
- };
-?>
-
-
- $__env->getContainer()->make(Illuminate\View\Factory::class)->make('mail::button'),'data' => ['url' => $actionUrl,'color' => $color]] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
-withName('mail::button'); ?>
-shouldRender()): ?>
-startComponent($component->resolveView(), $component->data()); ?>
-
-except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
-
-withAttributes(['url' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($actionUrl),'color' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($color)]); ?>
-
-
- renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
-
-addLoop($__currentLoopData); foreach($__currentLoopData as $line): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
-
-
-
-popLoop(); $loop = $__env->getLastLoop(); ?>
-
-
-
-
-
-
-get('Regards,'); ?>
-
-
-
-
-
-
- slot('subcopy', null, []); ?>
-get(
- "If you're having trouble clicking the \":actionText\" button, copy and paste the URL below\n".
- 'into your web browser:',
- [
- 'actionText' => $actionText,
- ]
-); ?> []()
- endSlot(); ?>
-
- renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/storage/framework/views/92a8c3870aef3f323aa16967e3a8c1c9.php b/storage/framework/views/92a8c3870aef3f323aa16967e3a8c1c9.php
deleted file mode 100644
index 3a5340f..0000000
--- a/storage/framework/views/92a8c3870aef3f323aa16967e3a8c1c9.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']] + (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']); ?>
-renderComponent(); ?>
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/storage/framework/views/94da763161c830287d51c130b209b60d.php b/storage/framework/views/94da763161c830287d51c130b209b60d.php
deleted file mode 100644
index eb10ee5..0000000
--- a/storage/framework/views/94da763161c830287d51c130b209b60d.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/99fb2a678ec0881f31e171ff2b3d1258.php b/storage/framework/views/99fb2a678ec0881f31e171ff2b3d1258.php
deleted file mode 100644
index 0bf681f..0000000
--- a/storage/framework/views/99fb2a678ec0881f31e171ff2b3d1258.php
+++ /dev/null
@@ -1,3 +0,0 @@
-:
-
-
\ No newline at end of file
diff --git a/storage/framework/views/a1e056351a851535995d970dbe373ba0.php b/storage/framework/views/a1e056351a851535995d970dbe373ba0.php
deleted file mode 100644
index f53a30a..0000000
--- a/storage/framework/views/a1e056351a851535995d970dbe373ba0.php
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
\ No newline at end of file
diff --git a/storage/framework/views/a2b2477d6740cc3e820fa518d9742445.php b/storage/framework/views/a2b2477d6740cc3e820fa518d9742445.php
deleted file mode 100644
index 1919845..0000000
--- a/storage/framework/views/a2b2477d6740cc3e820fa518d9742445.php
+++ /dev/null
@@ -1,3 +0,0 @@
-:
-
-
\ No newline at end of file
diff --git a/storage/framework/views/a6d6941af528241a4a943225032aad39.php b/storage/framework/views/a6d6941af528241a4a943225032aad39.php
deleted file mode 100644
index 0b26834..0000000
--- a/storage/framework/views/a6d6941af528241a4a943225032aad39.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/a9f2b557e09ebec13cff0b8230cf2e68.php b/storage/framework/views/a9f2b557e09ebec13cff0b8230cf2e68.php
deleted file mode 100644
index ee4c6be..0000000
--- a/storage/framework/views/a9f2b557e09ebec13cff0b8230cf2e68.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/afea031cb86914091aab6a6bcd9c0fed.php b/storage/framework/views/afea031cb86914091aab6a6bcd9c0fed.php
deleted file mode 100644
index 7eaee6e..0000000
--- a/storage/framework/views/afea031cb86914091aab6a6bcd9c0fed.php
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
\ No newline at end of file
diff --git a/storage/framework/views/b774431b9cff30259d6882d7ce566f1b.php b/storage/framework/views/b774431b9cff30259d6882d7ce566f1b.php
deleted file mode 100644
index cfdb13f..0000000
--- a/storage/framework/views/b774431b9cff30259d6882d7ce566f1b.php
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
\ No newline at end of file
diff --git a/storage/framework/views/b8d252598ab807a4cc5cfc4a46c236d6.php b/storage/framework/views/b8d252598ab807a4cc5cfc4a46c236d6.php
deleted file mode 100644
index d7e6f1d..0000000
--- a/storage/framework/views/b8d252598ab807a4cc5cfc4a46c236d6.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
diff --git a/storage/framework/views/bafb55cddeec0f87723e23c0ca6a6ef3.php b/storage/framework/views/bafb55cddeec0f87723e23c0ca6a6ef3.php
deleted file mode 100644
index b3bb6c7..0000000
--- a/storage/framework/views/bafb55cddeec0f87723e23c0ca6a6ef3.php
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
\ No newline at end of file
diff --git a/storage/framework/views/c21b95fd3ceed430cd4c83267e521099.php b/storage/framework/views/c21b95fd3ceed430cd4c83267e521099.php
deleted file mode 100644
index 454fb09..0000000
--- a/storage/framework/views/c21b95fd3ceed430cd4c83267e521099.php
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
\ No newline at end of file
diff --git a/storage/framework/views/c50842a0e813bd007f584d9c581a7ce5.php b/storage/framework/views/c50842a0e813bd007f584d9c581a7ce5.php
deleted file mode 100644
index f9231b6..0000000
--- a/storage/framework/views/c50842a0e813bd007f584d9c581a7ce5.php
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
\ No newline at end of file
diff --git a/storage/framework/views/ca3baebd6fcf9d182c655e57755f9cbe.php b/storage/framework/views/ca3baebd6fcf9d182c655e57755f9cbe.php
deleted file mode 100644
index 8c53199..0000000
--- a/storage/framework/views/ca3baebd6fcf9d182c655e57755f9cbe.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/ccf633a219a6f04bf7def15c370af55b.php b/storage/framework/views/ccf633a219a6f04bf7def15c370af55b.php
deleted file mode 100644
index 79059fd..0000000
--- a/storage/framework/views/ccf633a219a6f04bf7def15c370af55b.php
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
\ No newline at end of file
diff --git a/storage/framework/views/cd1c5f121566225444f2a2c46103809d.php b/storage/framework/views/cd1c5f121566225444f2a2c46103809d.php
deleted file mode 100644
index 4160b96..0000000
--- a/storage/framework/views/cd1c5f121566225444f2a2c46103809d.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/cdadebb93f9088db35ac3411150e83a5.php b/storage/framework/views/cdadebb93f9088db35ac3411150e83a5.php
deleted file mode 100644
index 21f50bd..0000000
--- a/storage/framework/views/cdadebb93f9088db35ac3411150e83a5.php
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
\ No newline at end of file
diff --git a/storage/framework/views/cf6e0e8321bd57a2611a3536c45db3b8.php b/storage/framework/views/cf6e0e8321bd57a2611a3536c45db3b8.php
deleted file mode 100644
index 32724d8..0000000
--- a/storage/framework/views/cf6e0e8321bd57a2611a3536c45db3b8.php
+++ /dev/null
@@ -1,57 +0,0 @@
- 'primary',
- 'align' => 'center',
-]));
-
-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(([
- 'url',
- 'color' => 'primary',
- 'align' => 'center',
-]), '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/d39f45f257f46cfc469496fef6ea57c2.php b/storage/framework/views/d39f45f257f46cfc469496fef6ea57c2.php
deleted file mode 100644
index 5abc4bd..0000000
--- a/storage/framework/views/d39f45f257f46cfc469496fef6ea57c2.php
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
\ No newline at end of file
diff --git a/storage/framework/views/d67e25b95fad6b838ab2919231ee39af.php b/storage/framework/views/d67e25b95fad6b838ab2919231ee39af.php
deleted file mode 100644
index 76b1355..0000000
--- a/storage/framework/views/d67e25b95fad6b838ab2919231ee39af.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/d6aab46d74048c9e1c63e7b3e44865f8.php b/storage/framework/views/d6aab46d74048c9e1c63e7b3e44865f8.php
deleted file mode 100644
index 0d1ab0d..0000000
--- a/storage/framework/views/d6aab46d74048c9e1c63e7b3e44865f8.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/dc84718c89671766c658e5c2cfdec4d5.php b/storage/framework/views/dc84718c89671766c658e5c2cfdec4d5.php
deleted file mode 100644
index 165f3ec..0000000
--- a/storage/framework/views/dc84718c89671766c658e5c2cfdec4d5.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/ddbf67c8549a8eaea72e7b671403f0e9.php b/storage/framework/views/ddbf67c8549a8eaea72e7b671403f0e9.php
deleted file mode 100644
index 1f3c130..0000000
--- a/storage/framework/views/ddbf67c8549a8eaea72e7b671403f0e9.php
+++ /dev/null
@@ -1,13 +0,0 @@
-
-|
-
- |
-
-
\ No newline at end of file
diff --git a/storage/framework/views/e3f4e4c947a5343648fee553330e8b78.php b/storage/framework/views/e3f4e4c947a5343648fee553330e8b78.php
deleted file mode 100644
index 3123f02..0000000
--- a/storage/framework/views/e3f4e4c947a5343648fee553330e8b78.php
+++ /dev/null
@@ -1,42 +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((['url']), '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/ecf2e2e0e356edbaf1793d06572b239d.php b/storage/framework/views/ecf2e2e0e356edbaf1793d06572b239d.php
deleted file mode 100644
index 237e83b..0000000
--- a/storage/framework/views/ecf2e2e0e356edbaf1793d06572b239d.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/f3d8822cecb56b514cbc7ac433971780.php b/storage/framework/views/f3d8822cecb56b514cbc7ac433971780.php
deleted file mode 100644
index 1b5ec45..0000000
--- a/storage/framework/views/f3d8822cecb56b514cbc7ac433971780.php
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
\ No newline at end of file
diff --git a/storage/framework/views/f6bd16f2820f95cd58b65366f40522e6.php b/storage/framework/views/f6bd16f2820f95cd58b65366f40522e6.php
deleted file mode 100644
index 01e45e8..0000000
--- a/storage/framework/views/f6bd16f2820f95cd58b65366f40522e6.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()) {
- $source = $class;
-
- if ($previous = $frame->previous()) {
- $source .= $previous->operator();
- $source .= $previous->callable();
- $source .= '('.implode(', ', $previous->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/ff3c65963ef39f3ad1be1b746b2411cb.php b/storage/framework/views/ff3c65963ef39f3ad1be1b746b2411cb.php
deleted file mode 100644
index c501286..0000000
--- a/storage/framework/views/ff3c65963ef39f3ad1be1b746b2411cb.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