[2026-04-20 21:33:02] local.DEBUG: [vite] server connection lost. Polling for restart... {"url":"http://qilqana.test/charges","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36 OPR/129.0.0.0","timestamp":"2026-04-20T21:33:01.503Z"} 
[2026-04-22 00:30:26] local.DEBUG: [vite] server connection lost. Polling for restart... {"url":"http://qilqana.test/resolucions?search=3191&periodo=","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36 OPR/129.0.0.0","timestamp":"2026-04-22T00:30:23.844Z"} 
[2026-04-22 00:30:52] local.DEBUG: [vite] server connection lost. Polling for restart... {"url":"http://qilqana.test/resolucions?search=3191&periodo=","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36 OPR/129.0.0.0","timestamp":"2026-04-22T00:30:51.125Z"} 
[2026-04-22 18:01:54] local.DEBUG: [vite] server connection lost. Polling for restart... {"url":"http://qilqana.test/resolucions","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36 OPR/129.0.0.0","timestamp":"2026-04-22T18:01:31.176Z"} 
[2026-04-25 13:32:57] local.DEBUG: Laravel Client PHP 10.50.2 8.2.10 ErrorException 1777123972 Attempt to read property "dni" on null    C:\laragon\www\Qilqana\app\Models\Charge.php 68 handleError Illuminate\Foundation\Bootstrap\HandleExceptions { return $this->hasOne(Signature::class); } null /* Accessors para optimizar vistas */ null public function getInteresadoLabelAttribute(): string { switch ($this->tipo_interesado) { case 'Persona Juridica': return $this->legalEntity?->razon_social ?: $this->legalEntity?->ruc ?: '---'; case 'Persona Natural': $person = $this->naturalPerson; $fullName = trim(($person->nombres ?? '').' '.($person->apellido_paterno ?? '').' '.($person->apellido_materno ?? '')); null return $fullName !== '' ? $fullName : ($person->dni ?: '---'); case 'Trabajador UGEL': return $this->user?->name.' '.$this->user?->last_name ?: '---'; default: return '---'; } } null public function getHasSignatureAttribute(): bool { return (bool) ($this->signature?->signature_root); } null public function getHasCartaPoderAttribute(): bool {  true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Bootstrap\HandleExceptions.php 255 Illuminate\Foundation\Bootstrap\{closure} Illuminate\Foundation\Bootstrap\HandleExceptions * @return \Symfony\Component\ErrorHandler\Error\FatalError */ protected function fatalErrorFromPhpError(array $error, $traceOffset = null) { return new FatalError($error['message'], 0, $error, $traceOffset); } null /** * Forward a method call to the given method if an application instance exists. * * @return callable */ protected function forwardsTo($method) { return fn (...$arguments) => static::$app ? $this->{$method}(...$arguments) : false; } null /** * Determine if the error level is a deprecation. * * @param  int  $level * @return bool */ protected function isDeprecation($level) { return in_array($level, [E_DEPRECATED, E_USER_DEPRECATED]); } null level 2 int false false false message Attempt to read property "dni" on null string false false false file C:\laragon\www\Qilqana\app\Models\Charge.php string false false false line 68 int false false false false C:\laragon\www\Qilqana\app\Models\Charge.php 68 getInteresadoLabelAttribute App\Models\Charge { return $this->hasOne(Signature::class); } null /* Accessors para optimizar vistas */ null public function getInteresadoLabelAttribute(): string { switch ($this->tipo_interesado) { case 'Persona Juridica': return $this->legalEntity?->razon_social ?: $this->legalEntity?->ruc ?: '---'; case 'Persona Natural': $person = $this->naturalPerson; $fullName = trim(($person->nombres ?? '').' '.($person->apellido_paterno ?? '').' '.($person->apellido_materno ?? '')); null return $fullName !== '' ? $fullName : ($person->dni ?: '---'); case 'Trabajador UGEL': return $this->user?->name.' '.$this->user?->last_name ?: '---'; default: return '---'; } } null public function getHasSignatureAttribute(): bool { return (bool) ($this->signature?->signature_root); } null public function getHasCartaPoderAttribute(): bool { arg0 2 int false false false arg1 Attempt to read property "dni" on null string false false false arg2 C:\laragon\www\Qilqana\app\Models\Charge.php string false false false arg3 68 int false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 658 mutateAttribute Illuminate\Database\Eloquent\Model return static::$getAttributeMutatorCache[get_class($this)][$key] = false; } null return static::$getAttributeMutatorCache[get_class($this)][$key] = is_callable($this->{Str::camel($key)}()->get); } null /** * Get the value of an attribute using its mutator. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function mutateAttribute($key, $value) { return $this->{'get'.Str::studly($key).'Attribute'}($value); } null /** * Get the value of an "Attribute" return type marked attribute using its mutator. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function mutateAttributeMarkedAttribute($key, $value) { if (array_key_exists($key, $this->attributeCastCache)) { return $this->attributeCastCache[$key]; } arg0 null null false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 2124 transformModelValue Illuminate\Database\Eloquent\Model } null /** * Transform a raw model value using mutators, casts, etc. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transformModelValue($key, $value) { // If the attribute has a get mutator, we will call that then return what // it returns as the value, which is useful for transforming values on // retrieval from the model to a form that is more useful for usage. if ($this->hasGetMutator($key)) { return $this->mutateAttribute($key, $value); } elseif ($this->hasAttributeGetMutator($key)) { return $this->mutateAttributeMarkedAttribute($key, $value); } null // If the attribute exists within the cast array, we will convert it to // an appropriate native PHP type dependent upon the associated value // given with the key in the pair. Dayle made this comment line up. if ($this->hasCast($key)) { if (static::preventsAccessingMissingAttributes() && ! array_key_exists($key, $this->attributes) && ($this->isEnumCastable($key) || in_array($this->getCastType($key), static::$primitiveCastTypes))) { $this->throwMissingAttributeExceptionIfApplicable($key); } key interesado_label string false false false value null null false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 489 getAttributeValue Illuminate\Database\Eloquent\Model null throw new MissingAttributeException($this, $key); } null return null; } null /** * Get a plain attribute (not a relationship). * * @param  string  $key * @return mixed */ public function getAttributeValue($key) { return $this->transformModelValue($key, $this->getAttributeFromArray($key)); } null /** * Get an attribute from the $attributes array. * * @param  string  $key * @return mixed */ protected function getAttributeFromArray($key) { return $this->getAttributes()[$key] ?? null; } null /** key interesado_label string false false false value null null false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 443 getAttribute Illuminate\Database\Eloquent\Model */ public function getAttribute($key) { if (! $key) { return; } null // If the attribute exists in the attribute array or has a "get" mutator we will // get the attribute's value. Otherwise, we will proceed as if the developers // are asking for a relationship's value. This covers both types of values. if (array_key_exists($key, $this->attributes) || array_key_exists($key, $this->casts) || $this->hasGetMutator($key) || $this->hasAttributeMutator($key) || $this->isClassCastable($key)) { return $this->getAttributeValue($key); } null // Here we will determine if the model base class itself contains this given key // since we don't want to treat any of those methods as relationships because // they are all intended as helper methods and none of these are relations. if (method_exists(self::class, $key)) { return $this->throwMissingAttributeExceptionIfApplicable($key); } null return $this->isRelation($key) || $this->relationLoaded($key) ? $this->getRelationValue($key) : $this->throwMissingAttributeExceptionIfApplicable($key); } null key interesado_label string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Model.php 2227 __get Illuminate\Database\Eloquent\Model * @return string */ public function broadcastChannel() { return str_replace('\\', '.', get_class($this)).'.'.$this->getKey(); } null /** * Dynamically retrieve attributes on the model. * * @param  string  $key * @return mixed */ public function __get($key) { return $this->getAttribute($key); } null /** * Dynamically set attributes on the model. * * @param  string  $key * @param  mixed  $value * @return void */ public function __set($key, $value) { $this->setAttribute($key, $value); } null key interesado_label string false false false false C:\laragon\www\Qilqana\resources\views\charges\partials\item-actions.blade.php 40 require null <span class="material-symbols-outlined">block</span> </button> @endif null @include('charges.forms.delete', [ 'charge' => $charge, 'disabled' => ($charge->signature?->signature_status !== 'pendiente' && !Auth::user()->hasRole('ADMINISTRADOR')), ]) </div> null <div class="mt-1"> <button type="button" class="btn btn-outline-secondary btn-sm btn-view-charge-details" title="Ver detalles" data-charge-id="{{ $charge->id }}" data-n-charge="{{ $charge->n_charge }}" data-interesado="{{ $charge->interesado_label }}" data-tipo="{{ $charge->tipo_interesado }}" data-asunto="{{ $charge->asunto }}" data-fecha="{{ $charge->document_date ? \Carbon\Carbon::parse($charge->document_date)->format('d/m/Y') : '---' }}" data-user="{{ $charge->user?->name }} {{ $charge->user?->last_name }}" data-status="{{ ucfirst($charge->signature?->signature_status ?? 'pendiente') }}" data-has-signature="{{ $charge->has_signature ? '1' : '0' }}" data-signature-url="{{ route('charges.file.signature', $charge) }}" data-signer="{{ $charge->signature?->signer?->name ?? '' }} {{ $charge->signature?->signer?->last_name ?? '' }}" data-titularidad="{{ $charge->signature?->titularidad ? '1' : '0' }}" data-parentesco="{{ $charge->signature?->parentesco ?? '' }}" data-titular-name="{{ $charge->resolucion?->nombres_apellidos ?? $charge->naturalPerson?->full_name ?? '' }}" data-has-evidence="{{ $charge->has_evidence ? '1' : '0' }}" data-evidence-url="{{ route('charges.file.evidence', $charge) }}" data-has-carta-poder="{{ $charge->has_carta_poder ? '1' : '0' }}" key interesado_label string false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\aee3964602ead821ce0538ab38b5b82c.php string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/aee3964602ead821ce0538ab38b5b82c.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/aee3964602ead821ce0538ab38b5b82c.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/partials/item-actions.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false C:\laragon\www\Qilqana\resources\views\charges\partials\lists\resolution.blade.php 74 require null <div class="d-flex justify-content-between align-items-start gap-2"> <div> <div class="small text-muted">Cargo #{{ $charge->n_charge }}</div> <div class="fw-semibold">RD: {{ $charge->resolucion?->rd }}</div> <div class="small text-muted">{{ $charge->resolucion?->periodo }}</div> </div> @include('charges.partials.status-badge', [ 'status' => $charge->signature?->signature_status, ]) </div> <div class="mt-2"> <div class="small text-muted">Interesado: {{ $charge->resolucion?->nombres_apellidos }} </div> </div> <div class="mt-3"> @include('charges.partials.item-actions', [ 'charge' => $charge, 'canSign' => true, ]) </div> </div> </div> @empty <div class="text-center text-muted py-4">No hay cargos de resoluciones.</div> @endforelse </div> null {{-- VISTA ESCRITORIO --}} <div class="table-responsive d-none d-md-block"> <table class="table align-middle table-hover mb-0"> callback null null false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\9950652d1e1370f0a05e8d8b1308af59.php string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/9950652d1e1370f0a05e8d8b1308af59.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/9950652d1e1370f0a05e8d8b1308af59.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/partials/lists/resolution.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false C:\laragon\www\Qilqana\resources\views\charges\partials\dashboard.blade.php 127 require null </button> </li> <li class="nav-item" role="presentation"> <button class="nav-link d-flex align-items-center gap-2" id="created-tab" data-bs-toggle="tab" data-bs-target="#created-tab-pane" type="button" role="tab" aria-controls="created-tab-pane" aria-selected="false"> Creados <span class="badge bg-secondary ms-1">{{ $createdTotal }}</span> </button> </li> <li class="nav-item" role="presentation"> <button class="nav-link d-flex align-items-center gap-2" id="sent-tab" data-bs-toggle="tab" data-bs-target="#sent-tab-pane" type="button" role="tab" aria-controls="sent-tab-pane" aria-selected="false"> Enviados <span class="badge bg-secondary ms-1">{{ $sentTotal }}</span> </button> </li> </ul> null <div class="tab-content" id="charges-tabs-content"> @if ($canViewResolutionCharges) @include('charges.partials.lists.resolution', ['active' => true]) @endif null @include('charges.partials.lists.received', ['active' => !$canViewResolutionCharges]) null @include('charges.partials.lists.created') null @include('charges.partials.lists.sent') </div> null callback null null false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\5ad9442a6a0a540f7d994a78d05830d2.php string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/5ad9442a6a0a540f7d994a78d05830d2.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/5ad9442a6a0a540f7d994a78d05830d2.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/partials/dashboard.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false C:\laragon\www\Qilqana\resources\views\charges\index.blade.php 42 require null <h5 class="mb-2">Errores durante la importacion:</h5> <ul class="mb-0"> @foreach (session('errores') as $error) <li>{{ $error }}</li> @endforeach </ul> </div> @endif null @if (session('success')) <div class="alert alert-success shadow-sm"> {{ session('success') }} </div> @endif <div id="charges-dashboard" data-refresh-interval="{{ $refreshIntervalSeconds ?? 5 }}" data-refresh-url="{{ route('charges.refresh') }}"> @include('charges.partials.dashboard') </div> </div> {{-- Formularios de crear cargos --}} @include('charges.forms.create') null {{-- Formularios de editar cargos --}} @include('charges.forms.edit') null {{-- Formularios de firmar cargos --}} @include('charges.forms.sign') null {{-- Formularios de rechazar cargos --}} @include('charges.forms.reject') null callback null null false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\15d308017064a4a142ff7af4cc62d614.php string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/15d308017064a4a142ff7af4cc62d614.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/15d308017064a4a142ff7af4cc62d614.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/index.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Response.php 69 setContent Illuminate\Http\Response // from routes that will be automatically transformed to their JSON form. if ($this->shouldBeJson($content)) { $this->header('Content-Type', 'application/json'); null $content = $this->morphToJson($content); null if ($content === false) { throw new InvalidArgumentException(json_last_error_msg()); } } null // If this content implements the "Renderable" interface then we will call the // render method on the object so we will avoid any "__toString" exceptions // that might be thrown and have their errors obscured by PHP's handling. elseif ($content instanceof Renderable) { $content = $content->render(); } null parent::setContent($content); null return $this; } null /** * Determine if the given content should be turned into JSON. * * @param  mixed  $content * @return bool */ protected function shouldBeJson($content) callback null null false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Response.php 35 __construct Illuminate\Http\Response null /** * Create a new HTTP response. * * @param  mixed  $content * @param  int  $status * @param  array  $headers * @return void * * @throws \InvalidArgumentException */ public function __construct($content = '', $status = 200, array $headers = []) { $this->headers = new ResponseHeaderBag($headers); null $this->setContent($content); $this->setStatusCode($status); $this->setProtocolVersion('1.0'); } null /** * Set the content on the response. * * @param  mixed  $content * @return $this * * @throws \InvalidArgumentException */ public function setContent(mixed $content): static { null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 918 toResponse Illuminate\Routing\Router if ($response instanceof PsrResponseInterface) { $response = (new HttpFoundationFactory)->createResponse($response); } elseif ($response instanceof Model && $response->wasRecentlyCreated) { $response = new JsonResponse($response, 201); } elseif ($response instanceof Stringable) { $response = new Response($response->__toString(), 200, ['Content-Type' => 'text/html']); } elseif (! $response instanceof SymfonyResponse && ($response instanceof Arrayable || $response instanceof Jsonable || $response instanceof ArrayObject || $response instanceof JsonSerializable || $response instanceof stdClass || is_array($response))) { $response = new JsonResponse($response); } elseif (! $response instanceof SymfonyResponse) { $response = new Response($response, 200, ['Content-Type' => 'text/html']); } null if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) { $response->setNotModified(); } null return $response->prepare($request); } null /** * Substitute the route bindings onto the route. * * @param  \Illuminate\Routing\Route  $route * @return \Illuminate\Routing\Route null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 885 prepareResponse Illuminate\Routing\Router { return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all(); } null /** * Create a response instance from the given value. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { $this->events->dispatch(new PreparingResponse($request, $response)); null return tap(static::toResponse($request, $response), function ($response) use ($request) { $this->events->dispatch(new ResponsePrepared($request, $response)); }); } null /** * Static version of prepareResponse. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public static function toResponse($request, $response) { if ($response instanceof Responsable) { null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 805 Illuminate\Routing\{closure} Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 144 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline return $this->then(function ($passable) { return $passable; }); } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\boost\src\Middleware\InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Middleware\SubstituteBindings.php 50 handle Illuminate\Routing\Middleware\SubstituteBindings public function __construct(Registrar $router) { $this->router = $router; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { try { $this->router->substituteBindings($route = $request->route()); null $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Auth\Middleware\Authenticate.php 57 handle Illuminate\Auth\Middleware\Authenticate null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @param  string[]  ...$guards * @return mixed * * @throws \Illuminate\Auth\AuthenticationException */ public function handle($request, Closure $next, ...$guards) { $this->authenticate($request, $guards); null return $next($request); } null /** * Determine if the user is logged in to any of the given guards. * * @param  \Illuminate\Http\Request  $request * @param  array  $guards * @return void * * @throws \Illuminate\Auth\AuthenticationException */ protected function authenticate($request, array $guards) { if (empty($guards)) { arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false guards  array false true false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\VerifyCsrfToken.php 78 handle Illuminate\Foundation\Http\Middleware\VerifyCsrfToken * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Middleware\ShareErrorsFromSession.php 49 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // Putting the errors in the view for every view allows the developer to just // assume that some errors are always available, which is convenient since // they don't have to continually run checks for the presence of errors. null return $next($request); } } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php 121 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // Again, if the session has been configured we will need to close out the session // so that the attributes may be persisted to some storage medium. We will also // add the session identifier cookie to the application response headers now. $this->saveSession($request); null return $response; } null /** arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php 64 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * Handle the given request within session state. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleRequestWhileBlocking(Request $request, $session, Closure $next) { if (! $request->route() instanceof Route) { return; request GET http://qilqana.test/charges Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse.php 37 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies * @return void */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Cookie\Middleware\EncryptCookies.php 67 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * Decrypt the cookies on the request. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @return \Symfony\Component\HttpFoundation\Request */ protected function decrypt(Request $request) { foreach ($request->cookies as $key => $cookie) { if ($this->isDisabled($key)) { continue; } arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 119 then Illuminate\Pipeline\Pipeline return $this; } null /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null return $pipeline($this->passable); } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { return $this->then(function ($passable) { return $passable; }); } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 805 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php:805-807 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 784 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * Run the given route within a Stack "onion" instance. * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 748 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * Dispatch the request to a route and return the response. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request)); } null /** * Find the route matching a given request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Routing\Route */ protected function findRoute($request) { $this->events->dispatch(new Routing($request)); null $this->current = $route = $this->routes->match($request); null request GET http://qilqana.test/charges Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 737 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * Dispatch the request to a route and return the response. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request)); } null /** request GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 200 Illuminate\Foundation\Http\{closure} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * Call the terminate method on any terminable middleware. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Http\Response  $response * @return void */ public function terminate($request, $response) { $this->terminateMiddleware($request, $response); null request GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 144 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline return $this->then(function ($passable) { return $passable; }); } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TrimStrings.php 40 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { if (in_array($key, $this->except, true) || ! is_string($value)) { return $value; } request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ValidatePostSize.php 27 handle Illuminate\Foundation\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException; } null return $next($request); } null /** * Determine the server 'post_max_size' as bytes. * * @return int */ protected function getPostMaxSize() { if (is_numeric($postMaxSize = ini_get('post_max_size'))) { return (int) $postMaxSize; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance.php 99 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * Determine if the incoming request has a maintenance mode bypass cookie. * * @param  \Illuminate\Http\Request  $request * @param  array  $data * @return bool */ protected function hasValidBypassCookie($request, array $data) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Middleware\HandleCors.php 49 handle Illuminate\Http\Middleware\HandleCors { $this->container = $container; $this->cors = $cors; } null /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Middleware\TrustProxies.php 39 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * Sets the trusted proxies on the request. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function setTrustedProxyIpAddresses(Request $request) { $trustedIps = $this->proxies() ?: config('trustedproxy.proxies'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 119 then Illuminate\Pipeline\Pipeline return $this; } null /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null return $pipeline($this->passable); } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { return $this->then(function ($passable) { return $passable; }); } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Facade::clearResolvedInstance('request'); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php:197-201 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\public\index.php 51 [top] null | | Composer provides a convenient, automatically generated class loader for | this application. We just need to utilize it! We'll simply require it | into the script here so we don't need to manually load our classes. | */ null require __DIR__.'/../vendor/autoload.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request using | the application's HTTP kernel. Then, we will send the response back | to this client's browser, allowing them to enjoy our application. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() )->send(); null $kernel->terminate($request, $response); null  true http://qilqana.test/charges null GET Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0    qilqana.test keep-alive max-age=0 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 http://qilqana.test/charges gzip, deflate es-419,es;q=0.9,en;q=0.8,ja;q=0.7,th;q=0.6,ko;q=0.5 <CENSORED> 1|LMdigGaD4gInPG7UFT4HNiNSjzg9MiGxyUL8xYezcWkTiJpCTMFS5tsxjGPG|$2y$12$WbJyS7sgPdXNvaihX7CNXe9HlrIjg9GQx9pfIqWmY6LTNrDNKzzEa u1GnxmSu44kIW5DOHkL8h3Ritba0zDkFribOr0JX KE8nAtbHhTVpq7GkZNPabTwwlapPT2QsgK4zaLQn u1GnxmSu44kIW5DOHkL8h3Ritba0zDkFribOr0JX 1 http://qilqana.test/charges   charges.index  App\Http\Controllers\ChargeController@index web auth 1 ADMIN ADMIN 000000000 2026-04-20T00:59:38.000000Z 2026-04-20T00:59:38.000000Z 1 ADMINISTRADOR web 2026-04-20T00:59:38.000000Z 2026-04-20T00:59:38.000000Z App\Models\User 1 1 C:\laragon\www\Qilqana\resources\views\charges\partials\item-actions.blade.php <pre class=sf-dump id=sf-dump-349427384 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\ViewErrorBag</span> {<a class=sf-dump-ref>#1363</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">bags</span>: []
</samp>}
</pre><script>Sfdump("sf-dump-349427384", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1157748384 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1486</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-1157748384", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1592969531 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1522</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-1592969531", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1578463610 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1545</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-1578463610", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1047542991 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1454</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:2</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1437</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
    <span class=sf-dump-index>1</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1438</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-1047542991", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1019129081 data-indent-pad="  "><span class=sf-dump-num>2</span>
</pre><script>Sfdump("sf-dump-1019129081", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1649348231 data-indent-pad="  "><span class=sf-dump-num>2</span>
</pre><script>Sfdump("sf-dump-1649348231", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1040088838 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1040088838", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-687819659 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1555</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\User
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">User</span></span> {<a class=sf-dump-ref>#1556</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="5 characters">users</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: []
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: <span class=sf-dump-note>array:2</span> [ &#8230;2]
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:4</span> [ &#8230;4]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">rememberTokenName</span>: "<span class=sf-dump-str title="14 characters">remember_token</span>"
      #<span class=sf-dump-protected title="Protected property">accessToken</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">roleClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">permissionClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardPermissionsIndex</span>: <span class=sf-dump-const title="Uninitialized property">? array</span>
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-687819659", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-171398499 data-indent-pad="  "><span class=sf-dump-note>array:1</span> [<samp data-depth=1 class=sf-dump-expanded>
  <span class=sf-dump-index>0</span> => "<span class=sf-dump-str title="4 characters">2026</span>"
</samp>]
</pre><script>Sfdump("sf-dump-171398499", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1697562933 data-indent-pad="  "><span class=sf-dump-num>5</span>
</pre><script>Sfdump("sf-dump-1697562933", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-265737834 data-indent-pad="  "><span class=sf-dump-const>true</span>
</pre><script>Sfdump("sf-dump-265737834", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1461706252 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-1461706252", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1081295200 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-1081295200", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-304396856 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-304396856", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-33138200 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-33138200", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1027146431 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-1027146431", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-90790153 data-indent-pad="  "><span class=sf-dump-num>1</span>
</pre><script>Sfdump("sf-dump-90790153", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1851229232 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1603</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-1851229232", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1685379530 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1685379530", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1694901029 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1694901029", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-833964560 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-833964560", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-686398910 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-686398910", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1161568453 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1161568453", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1912013885 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1912013885", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1875420754 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1875420754", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-6729605 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-6729605", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-2063289762 data-indent-pad="  "><span class=sf-dump-const>true</span>
</pre><script>Sfdump("sf-dump-2063289762", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-640110075 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1454</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:2</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1437</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
    <span class=sf-dump-index>1</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1438</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-640110075", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-658371512 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-658371512", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-848814136 data-indent-pad="  ">{<a class=sf-dump-ref>#1605</a><samp data-depth=1 class=sf-dump-expanded>
  +"<span class=sf-dump-public title="Runtime added dynamic property">iteration</span>": <span class=sf-dump-num>1</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">index</span>": <span class=sf-dump-num>0</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">remaining</span>": <span class=sf-dump-num>1</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">count</span>": <span class=sf-dump-num>2</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">first</span>": <span class=sf-dump-const>true</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">last</span>": <span class=sf-dump-const>false</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">odd</span>": <span class=sf-dump-const>true</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">even</span>": <span class=sf-dump-const>false</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">depth</span>": <span class=sf-dump-num>1</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">parent</span>": <span class=sf-dump-const>null</span>
</samp>}
</pre><script>Sfdump("sf-dump-848814136", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1032300644 data-indent-pad="  "><span class=sf-dump-const>false</span>
</pre><script>Sfdump("sf-dump-1032300644", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-761311990 data-indent-pad="  "><span class=sf-dump-note>App\Models\Charge</span> {<a class=sf-dump-ref>#1437</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
  #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
  #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
  #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
  +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
  #<span class=sf-dump-protected title="Protected property">with</span>: []
  #<span class=sf-dump-protected title="Protected property">withCount</span>: []
  +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
  +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
  +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>id</span>" => <span class=sf-dump-num>2</span>
    "<span class=sf-dump-key>n_charge</span>" => "<span class=sf-dump-str>2</span>"
    "<span class=sf-dump-key>asunto</span>" => "<span class=sf-dump-str title="6 characters">asunto</span>"
    "<span class=sf-dump-key>charge_period</span>" => "<span class=sf-dump-str title="4 characters">2026</span>"
    "<span class=sf-dump-key>document_date</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>tipo_interesado</span>" => "<span class=sf-dump-str title="15 characters">Persona Natural</span>"
    "<span class=sf-dump-key>user_id</span>" => <span class=sf-dump-num>1</span>
    "<span class=sf-dump-key>natural_person_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>legal_entity_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>resolucion_id</span>" => <span class=sf-dump-num>230642</span>
    "<span class=sf-dump-key>created_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
    "<span class=sf-dump-key>updated_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>id</span>" => <span class=sf-dump-num>2</span>
    "<span class=sf-dump-key>n_charge</span>" => "<span class=sf-dump-str>2</span>"
    "<span class=sf-dump-key>asunto</span>" => "<span class=sf-dump-str title="6 characters">asunto</span>"
    "<span class=sf-dump-key>charge_period</span>" => "<span class=sf-dump-str title="4 characters">2026</span>"
    "<span class=sf-dump-key>document_date</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>tipo_interesado</span>" => "<span class=sf-dump-str title="15 characters">Persona Natural</span>"
    "<span class=sf-dump-key>user_id</span>" => <span class=sf-dump-num>1</span>
    "<span class=sf-dump-key>natural_person_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>legal_entity_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>resolucion_id</span>" => <span class=sf-dump-num>230642</span>
    "<span class=sf-dump-key>created_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
    "<span class=sf-dump-key>updated_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">changes</span>: []
  #<span class=sf-dump-protected title="Protected property">casts</span>: []
  #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
  #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
  #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
  #<span class=sf-dump-protected title="Protected property">appends</span>: []
  #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
  #<span class=sf-dump-protected title="Protected property">observables</span>: []
  #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>user</span>" => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\User
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">User</span></span> {<a class=sf-dump-ref>#1442</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="5 characters">users</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: []
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: <span class=sf-dump-note>array:2</span> [ &#8230;2]
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:4</span> [ &#8230;4]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">rememberTokenName</span>: "<span class=sf-dump-str title="14 characters">remember_token</span>"
      #<span class=sf-dump-protected title="Protected property">accessToken</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">roleClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">permissionClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardPermissionsIndex</span>: <span class=sf-dump-const title="Uninitialized property">? array</span>
    </samp>}
    "<span class=sf-dump-key>naturalPerson</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>legalEntity</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>signature</span>" => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Signature
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Signature</span></span> {<a class=sf-dump-ref>#1457</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="10 characters">signatures</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:15</span> [ &#8230;15]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:15</span> [ &#8230;15]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:2</span> [ &#8230;2]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
    "<span class=sf-dump-key>resolucion</span>" => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Resolucion
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Resolucion</span></span> {<a class=sf-dump-ref>#1469</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="11 characters">resolucions</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: []
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:7</span> [ &#8230;7]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">dates</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">touches</span>: []
  +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
  +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">hidden</span>: []
  #<span class=sf-dump-protected title="Protected property">visible</span>: []
  #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => "<span class=sf-dump-str title="8 characters">n_charge</span>"
    <span class=sf-dump-index>1</span> => "<span class=sf-dump-str title="13 characters">charge_period</span>"
    <span class=sf-dump-index>2</span> => "<span class=sf-dump-str title="13 characters">document_date</span>"
    <span class=sf-dump-index>3</span> => "<span class=sf-dump-str title="7 characters">user_id</span>"
    <span class=sf-dump-index>4</span> => "<span class=sf-dump-str title="13 characters">resolucion_id</span>"
    <span class=sf-dump-index>5</span> => "<span class=sf-dump-str title="15 characters">tipo_interesado</span>"
    <span class=sf-dump-index>6</span> => "<span class=sf-dump-str title="17 characters">natural_person_id</span>"
    <span class=sf-dump-index>7</span> => "<span class=sf-dump-str title="15 characters">legal_entity_id</span>"
    <span class=sf-dump-index>8</span> => "<span class=sf-dump-str title="6 characters">asunto</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => "<span class=sf-dump-str>*</span>"
  </samp>]
</samp>}
</pre><script>Sfdump("sf-dump-761311990", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-816812616 data-indent-pad="  "><span class=sf-dump-const>true</span>
</pre><script>Sfdump("sf-dump-816812616", {"maxDepth":3,"maxStringLength":160})</script> 8.2.10 10.50.2 es false true local   select * from `sessions` where `id` = ? limit 1 20.98 mysql KE8nAtbHhTVpq7GkZNPabTwwlapPT2QsgK4zaLQn 1777123968.7847 select * from `users` where `id` = ? limit 1 1.22 mysql 1 1777123968.7959 select `value` from `settings` where `key` = ? limit 1 0.73 mysql charge_period 1777123968.8001 select `roles`.*, `model_has_roles`.`model_id` as `pivot_model_id`, `model_has_roles`.`role_id` as `pivot_role_id`, `model_has_roles`.`model_type` as `pivot_model_type` from `roles` inner join `model_has_roles` on `roles`.`id` = `model_has_roles`.`role_id` where `model_has_roles`.`model_id` in (1) and `model_has_roles`.`model_type` = ? 0.94 mysql App\Models\User 1777123968.8069 select * from `charges` where `resolucion_id` is not null and (`charge_period` = ? or `charge_period` is null) order by `created_at` desc 1.05 mysql 2026 1777123968.8103 select * from `users` where `users`.`id` in (1) 0.76 mysql  1777123968.8132 select * from `signatures` where `signatures`.`charge_id` in (1, 2) 0.85 mysql  1777123968.8166 select * from `users` where `users`.`id` in (1) 0.54 mysql  1777123968.8175 select * from `users` where `users`.`id` in (1) 0.57 mysql  1777123968.8184 select * from `resolucions` where `resolucions`.`id` in (224071, 230642) 0.66 mysql  1777123968.8195 select * from `charges` where `user_id` = ? and `resolucion_id` is null and (`charge_period` = ? or `charge_period` is null) order by `created_at` desc 0.81 mysql 1 2026 1777123968.8207 select * from `charges` where `resolucion_id` is null and exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `assigned_to` = ?) and `tipo_interesado` not in (?, ?) and (`charge_period` = ? or `charge_period` is null) and exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` != ?) order by `created_at` desc 1.33 mysql 1 Persona Juridica Persona Natural 2026 rechazado 1777123968.823 select * from `charges` where `user_id` = ? and `resolucion_id` is null and `tipo_interesado` in (?, ?) and (`charge_period` = ? or `charge_period` is null) order by `created_at` desc 0.9 mysql 1 Persona Juridica Persona Natural 2026 1777123968.8243 select count(*) as aggregate from `charges` where exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` = ?) 0.96 mysql firmado 1777123968.8257 select count(*) as aggregate from `charges` where exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` = ?) 0.74 mysql pendiente 1777123968.8268 select * from `users` where `id` != ? order by `name` asc 0.88 mysql 1 1777123968.8279 select distinct `charge_period` from `charges` where `charge_period` is not null order by `charge_period` desc 0.77 mysql  1777123968.8291 select `value` from `settings` where `key` = ? limit 1 0.64 mysql charges_refresh_interval 1777123968.83 local null null C:\laragon\www\Qilqana null edc87b35-958b-4ca2-a72e-40241e37e51b null null Laravel Client PHP 10.50.2 8.2.10 ErrorException 1777123972 Attempt to read property "dni" on null    C:\laragon\www\Qilqana\app\Models\Charge.php 68 handleError Illuminate\Foundation\Bootstrap\HandleExceptions { return $this->hasOne(Signature::class); } null /* Accessors para optimizar vistas */ null public function getInteresadoLabelAttribute(): string { switch ($this->tipo_interesado) { case 'Persona Juridica': return $this->legalEntity?->razon_social ?: $this->legalEntity?->ruc ?: '---'; case 'Persona Natural': $person = $this->naturalPerson; $fullName = trim(($person->nombres ?? '').' '.($person->apellido_paterno ?? '').' '.($person->apellido_materno ?? '')); null return $fullName !== '' ? $fullName : ($person->dni ?: '---'); case 'Trabajador UGEL': return $this->user?->name.' '.$this->user?->last_name ?: '---'; default: return '---'; } } null public function getHasSignatureAttribute(): bool { return (bool) ($this->signature?->signature_root); } null public function getHasCartaPoderAttribute(): bool {  true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Bootstrap\HandleExceptions.php 255 Illuminate\Foundation\Bootstrap\{closure} Illuminate\Foundation\Bootstrap\HandleExceptions * @return \Symfony\Component\ErrorHandler\Error\FatalError */ protected function fatalErrorFromPhpError(array $error, $traceOffset = null) { return new FatalError($error['message'], 0, $error, $traceOffset); } null /** * Forward a method call to the given method if an application instance exists. * * @return callable */ protected function forwardsTo($method) { return fn (...$arguments) => static::$app ? $this->{$method}(...$arguments) : false; } null /** * Determine if the error level is a deprecation. * * @param  int  $level * @return bool */ protected function isDeprecation($level) { return in_array($level, [E_DEPRECATED, E_USER_DEPRECATED]); } null level 2 int false false false message Attempt to read property "dni" on null string false false false file C:\laragon\www\Qilqana\app\Models\Charge.php string false false false line 68 int false false false false C:\laragon\www\Qilqana\app\Models\Charge.php 68 getInteresadoLabelAttribute App\Models\Charge { return $this->hasOne(Signature::class); } null /* Accessors para optimizar vistas */ null public function getInteresadoLabelAttribute(): string { switch ($this->tipo_interesado) { case 'Persona Juridica': return $this->legalEntity?->razon_social ?: $this->legalEntity?->ruc ?: '---'; case 'Persona Natural': $person = $this->naturalPerson; $fullName = trim(($person->nombres ?? '').' '.($person->apellido_paterno ?? '').' '.($person->apellido_materno ?? '')); null return $fullName !== '' ? $fullName : ($person->dni ?: '---'); case 'Trabajador UGEL': return $this->user?->name.' '.$this->user?->last_name ?: '---'; default: return '---'; } } null public function getHasSignatureAttribute(): bool { return (bool) ($this->signature?->signature_root); } null public function getHasCartaPoderAttribute(): bool { arg0 2 int false false false arg1 Attempt to read property "dni" on null string false false false arg2 C:\laragon\www\Qilqana\app\Models\Charge.php string false false false arg3 68 int false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 658 mutateAttribute Illuminate\Database\Eloquent\Model return static::$getAttributeMutatorCache[get_class($this)][$key] = false; } null return static::$getAttributeMutatorCache[get_class($this)][$key] = is_callable($this->{Str::camel($key)}()->get); } null /** * Get the value of an attribute using its mutator. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function mutateAttribute($key, $value) { return $this->{'get'.Str::studly($key).'Attribute'}($value); } null /** * Get the value of an "Attribute" return type marked attribute using its mutator. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function mutateAttributeMarkedAttribute($key, $value) { if (array_key_exists($key, $this->attributeCastCache)) { return $this->attributeCastCache[$key]; } arg0 null null false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 2124 transformModelValue Illuminate\Database\Eloquent\Model } null /** * Transform a raw model value using mutators, casts, etc. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transformModelValue($key, $value) { // If the attribute has a get mutator, we will call that then return what // it returns as the value, which is useful for transforming values on // retrieval from the model to a form that is more useful for usage. if ($this->hasGetMutator($key)) { return $this->mutateAttribute($key, $value); } elseif ($this->hasAttributeGetMutator($key)) { return $this->mutateAttributeMarkedAttribute($key, $value); } null // If the attribute exists within the cast array, we will convert it to // an appropriate native PHP type dependent upon the associated value // given with the key in the pair. Dayle made this comment line up. if ($this->hasCast($key)) { if (static::preventsAccessingMissingAttributes() && ! array_key_exists($key, $this->attributes) && ($this->isEnumCastable($key) || in_array($this->getCastType($key), static::$primitiveCastTypes))) { $this->throwMissingAttributeExceptionIfApplicable($key); } key interesado_label string false false false value null null false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 489 getAttributeValue Illuminate\Database\Eloquent\Model null throw new MissingAttributeException($this, $key); } null return null; } null /** * Get a plain attribute (not a relationship). * * @param  string  $key * @return mixed */ public function getAttributeValue($key) { return $this->transformModelValue($key, $this->getAttributeFromArray($key)); } null /** * Get an attribute from the $attributes array. * * @param  string  $key * @return mixed */ protected function getAttributeFromArray($key) { return $this->getAttributes()[$key] ?? null; } null /** key interesado_label string false false false value null null false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 443 getAttribute Illuminate\Database\Eloquent\Model */ public function getAttribute($key) { if (! $key) { return; } null // If the attribute exists in the attribute array or has a "get" mutator we will // get the attribute's value. Otherwise, we will proceed as if the developers // are asking for a relationship's value. This covers both types of values. if (array_key_exists($key, $this->attributes) || array_key_exists($key, $this->casts) || $this->hasGetMutator($key) || $this->hasAttributeMutator($key) || $this->isClassCastable($key)) { return $this->getAttributeValue($key); } null // Here we will determine if the model base class itself contains this given key // since we don't want to treat any of those methods as relationships because // they are all intended as helper methods and none of these are relations. if (method_exists(self::class, $key)) { return $this->throwMissingAttributeExceptionIfApplicable($key); } null return $this->isRelation($key) || $this->relationLoaded($key) ? $this->getRelationValue($key) : $this->throwMissingAttributeExceptionIfApplicable($key); } null key interesado_label string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Model.php 2227 __get Illuminate\Database\Eloquent\Model * @return string */ public function broadcastChannel() { return str_replace('\\', '.', get_class($this)).'.'.$this->getKey(); } null /** * Dynamically retrieve attributes on the model. * * @param  string  $key * @return mixed */ public function __get($key) { return $this->getAttribute($key); } null /** * Dynamically set attributes on the model. * * @param  string  $key * @param  mixed  $value * @return void */ public function __set($key, $value) { $this->setAttribute($key, $value); } null key interesado_label string false false false false C:\laragon\www\Qilqana\resources\views\charges\partials\item-actions.blade.php 40 require null <span class="material-symbols-outlined">block</span> </button> @endif null @include('charges.forms.delete', [ 'charge' => $charge, 'disabled' => ($charge->signature?->signature_status !== 'pendiente' && !Auth::user()->hasRole('ADMINISTRADOR')), ]) </div> null <div class="mt-1"> <button type="button" class="btn btn-outline-secondary btn-sm btn-view-charge-details" title="Ver detalles" data-charge-id="{{ $charge->id }}" data-n-charge="{{ $charge->n_charge }}" data-interesado="{{ $charge->interesado_label }}" data-tipo="{{ $charge->tipo_interesado }}" data-asunto="{{ $charge->asunto }}" data-fecha="{{ $charge->document_date ? \Carbon\Carbon::parse($charge->document_date)->format('d/m/Y') : '---' }}" data-user="{{ $charge->user?->name }} {{ $charge->user?->last_name }}" data-status="{{ ucfirst($charge->signature?->signature_status ?? 'pendiente') }}" data-has-signature="{{ $charge->has_signature ? '1' : '0' }}" data-signature-url="{{ route('charges.file.signature', $charge) }}" data-signer="{{ $charge->signature?->signer?->name ?? '' }} {{ $charge->signature?->signer?->last_name ?? '' }}" data-titularidad="{{ $charge->signature?->titularidad ? '1' : '0' }}" data-parentesco="{{ $charge->signature?->parentesco ?? '' }}" data-titular-name="{{ $charge->resolucion?->nombres_apellidos ?? $charge->naturalPerson?->full_name ?? '' }}" data-has-evidence="{{ $charge->has_evidence ? '1' : '0' }}" data-evidence-url="{{ route('charges.file.evidence', $charge) }}" data-has-carta-poder="{{ $charge->has_carta_poder ? '1' : '0' }}" key interesado_label string false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\aee3964602ead821ce0538ab38b5b82c.php string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/aee3964602ead821ce0538ab38b5b82c.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/aee3964602ead821ce0538ab38b5b82c.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/partials/item-actions.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false C:\laragon\www\Qilqana\resources\views\charges\partials\lists\resolution.blade.php 74 require null <div class="d-flex justify-content-between align-items-start gap-2"> <div> <div class="small text-muted">Cargo #{{ $charge->n_charge }}</div> <div class="fw-semibold">RD: {{ $charge->resolucion?->rd }}</div> <div class="small text-muted">{{ $charge->resolucion?->periodo }}</div> </div> @include('charges.partials.status-badge', [ 'status' => $charge->signature?->signature_status, ]) </div> <div class="mt-2"> <div class="small text-muted">Interesado: {{ $charge->resolucion?->nombres_apellidos }} </div> </div> <div class="mt-3"> @include('charges.partials.item-actions', [ 'charge' => $charge, 'canSign' => true, ]) </div> </div> </div> @empty <div class="text-center text-muted py-4">No hay cargos de resoluciones.</div> @endforelse </div> null {{-- VISTA ESCRITORIO --}} <div class="table-responsive d-none d-md-block"> <table class="table align-middle table-hover mb-0"> callback null null false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\9950652d1e1370f0a05e8d8b1308af59.php string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/9950652d1e1370f0a05e8d8b1308af59.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/9950652d1e1370f0a05e8d8b1308af59.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/partials/lists/resolution.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false C:\laragon\www\Qilqana\resources\views\charges\partials\dashboard.blade.php 127 require null </button> </li> <li class="nav-item" role="presentation"> <button class="nav-link d-flex align-items-center gap-2" id="created-tab" data-bs-toggle="tab" data-bs-target="#created-tab-pane" type="button" role="tab" aria-controls="created-tab-pane" aria-selected="false"> Creados <span class="badge bg-secondary ms-1">{{ $createdTotal }}</span> </button> </li> <li class="nav-item" role="presentation"> <button class="nav-link d-flex align-items-center gap-2" id="sent-tab" data-bs-toggle="tab" data-bs-target="#sent-tab-pane" type="button" role="tab" aria-controls="sent-tab-pane" aria-selected="false"> Enviados <span class="badge bg-secondary ms-1">{{ $sentTotal }}</span> </button> </li> </ul> null <div class="tab-content" id="charges-tabs-content"> @if ($canViewResolutionCharges) @include('charges.partials.lists.resolution', ['active' => true]) @endif null @include('charges.partials.lists.received', ['active' => !$canViewResolutionCharges]) null @include('charges.partials.lists.created') null @include('charges.partials.lists.sent') </div> null callback null null false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\5ad9442a6a0a540f7d994a78d05830d2.php string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/5ad9442a6a0a540f7d994a78d05830d2.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/5ad9442a6a0a540f7d994a78d05830d2.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/partials/dashboard.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false C:\laragon\www\Qilqana\resources\views\charges\index.blade.php 42 require null <h5 class="mb-2">Errores durante la importacion:</h5> <ul class="mb-0"> @foreach (session('errores') as $error) <li>{{ $error }}</li> @endforeach </ul> </div> @endif null @if (session('success')) <div class="alert alert-success shadow-sm"> {{ session('success') }} </div> @endif <div id="charges-dashboard" data-refresh-interval="{{ $refreshIntervalSeconds ?? 5 }}" data-refresh-url="{{ route('charges.refresh') }}"> @include('charges.partials.dashboard') </div> </div> {{-- Formularios de crear cargos --}} @include('charges.forms.create') null {{-- Formularios de editar cargos --}} @include('charges.forms.edit') null {{-- Formularios de firmar cargos --}} @include('charges.forms.sign') null {{-- Formularios de rechazar cargos --}} @include('charges.forms.reject') null callback null null false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\15d308017064a4a142ff7af4cc62d614.php string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/15d308017064a4a142ff7af4cc62d614.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/15d308017064a4a142ff7af4cc62d614.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/index.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Response.php 69 setContent Illuminate\Http\Response // from routes that will be automatically transformed to their JSON form. if ($this->shouldBeJson($content)) { $this->header('Content-Type', 'application/json'); null $content = $this->morphToJson($content); null if ($content === false) { throw new InvalidArgumentException(json_last_error_msg()); } } null // If this content implements the "Renderable" interface then we will call the // render method on the object so we will avoid any "__toString" exceptions // that might be thrown and have their errors obscured by PHP's handling. elseif ($content instanceof Renderable) { $content = $content->render(); } null parent::setContent($content); null return $this; } null /** * Determine if the given content should be turned into JSON. * * @param  mixed  $content * @return bool */ protected function shouldBeJson($content) callback null null false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Response.php 35 __construct Illuminate\Http\Response null /** * Create a new HTTP response. * * @param  mixed  $content * @param  int  $status * @param  array  $headers * @return void * * @throws \InvalidArgumentException */ public function __construct($content = '', $status = 200, array $headers = []) { $this->headers = new ResponseHeaderBag($headers); null $this->setContent($content); $this->setStatusCode($status); $this->setProtocolVersion('1.0'); } null /** * Set the content on the response. * * @param  mixed  $content * @return $this * * @throws \InvalidArgumentException */ public function setContent(mixed $content): static { null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 918 toResponse Illuminate\Routing\Router if ($response instanceof PsrResponseInterface) { $response = (new HttpFoundationFactory)->createResponse($response); } elseif ($response instanceof Model && $response->wasRecentlyCreated) { $response = new JsonResponse($response, 201); } elseif ($response instanceof Stringable) { $response = new Response($response->__toString(), 200, ['Content-Type' => 'text/html']); } elseif (! $response instanceof SymfonyResponse && ($response instanceof Arrayable || $response instanceof Jsonable || $response instanceof ArrayObject || $response instanceof JsonSerializable || $response instanceof stdClass || is_array($response))) { $response = new JsonResponse($response); } elseif (! $response instanceof SymfonyResponse) { $response = new Response($response, 200, ['Content-Type' => 'text/html']); } null if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) { $response->setNotModified(); } null return $response->prepare($request); } null /** * Substitute the route bindings onto the route. * * @param  \Illuminate\Routing\Route  $route * @return \Illuminate\Routing\Route null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 885 prepareResponse Illuminate\Routing\Router { return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all(); } null /** * Create a response instance from the given value. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { $this->events->dispatch(new PreparingResponse($request, $response)); null return tap(static::toResponse($request, $response), function ($response) use ($request) { $this->events->dispatch(new ResponsePrepared($request, $response)); }); } null /** * Static version of prepareResponse. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public static function toResponse($request, $response) { if ($response instanceof Responsable) { null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 805 Illuminate\Routing\{closure} Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 144 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline return $this->then(function ($passable) { return $passable; }); } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\boost\src\Middleware\InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Middleware\SubstituteBindings.php 50 handle Illuminate\Routing\Middleware\SubstituteBindings public function __construct(Registrar $router) { $this->router = $router; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { try { $this->router->substituteBindings($route = $request->route()); null $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Auth\Middleware\Authenticate.php 57 handle Illuminate\Auth\Middleware\Authenticate null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @param  string[]  ...$guards * @return mixed * * @throws \Illuminate\Auth\AuthenticationException */ public function handle($request, Closure $next, ...$guards) { $this->authenticate($request, $guards); null return $next($request); } null /** * Determine if the user is logged in to any of the given guards. * * @param  \Illuminate\Http\Request  $request * @param  array  $guards * @return void * * @throws \Illuminate\Auth\AuthenticationException */ protected function authenticate($request, array $guards) { if (empty($guards)) { arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false guards  array false true false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\VerifyCsrfToken.php 78 handle Illuminate\Foundation\Http\Middleware\VerifyCsrfToken * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Middleware\ShareErrorsFromSession.php 49 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // Putting the errors in the view for every view allows the developer to just // assume that some errors are always available, which is convenient since // they don't have to continually run checks for the presence of errors. null return $next($request); } } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php 121 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // Again, if the session has been configured we will need to close out the session // so that the attributes may be persisted to some storage medium. We will also // add the session identifier cookie to the application response headers now. $this->saveSession($request); null return $response; } null /** arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php 64 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * Handle the given request within session state. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleRequestWhileBlocking(Request $request, $session, Closure $next) { if (! $request->route() instanceof Route) { return; request GET http://qilqana.test/charges Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse.php 37 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies * @return void */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Cookie\Middleware\EncryptCookies.php 67 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * Decrypt the cookies on the request. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @return \Symfony\Component\HttpFoundation\Request */ protected function decrypt(Request $request) { foreach ($request->cookies as $key => $cookie) { if ($this->isDisabled($key)) { continue; } arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 119 then Illuminate\Pipeline\Pipeline return $this; } null /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null return $pipeline($this->passable); } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { return $this->then(function ($passable) { return $passable; }); } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 805 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php:805-807 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 784 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * Run the given route within a Stack "onion" instance. * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 748 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * Dispatch the request to a route and return the response. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request)); } null /** * Find the route matching a given request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Routing\Route */ protected function findRoute($request) { $this->events->dispatch(new Routing($request)); null $this->current = $route = $this->routes->match($request); null request GET http://qilqana.test/charges Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 737 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * Dispatch the request to a route and return the response. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request)); } null /** request GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 200 Illuminate\Foundation\Http\{closure} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * Call the terminate method on any terminable middleware. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Http\Response  $response * @return void */ public function terminate($request, $response) { $this->terminateMiddleware($request, $response); null request GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 144 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline return $this->then(function ($passable) { return $passable; }); } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TrimStrings.php 40 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { if (in_array($key, $this->except, true) || ! is_string($value)) { return $value; } request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ValidatePostSize.php 27 handle Illuminate\Foundation\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException; } null return $next($request); } null /** * Determine the server 'post_max_size' as bytes. * * @return int */ protected function getPostMaxSize() { if (is_numeric($postMaxSize = ini_get('post_max_size'))) { return (int) $postMaxSize; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance.php 99 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * Determine if the incoming request has a maintenance mode bypass cookie. * * @param  \Illuminate\Http\Request  $request * @param  array  $data * @return bool */ protected function hasValidBypassCookie($request, array $data) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Middleware\HandleCors.php 49 handle Illuminate\Http\Middleware\HandleCors { $this->container = $container; $this->cors = $cors; } null /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Middleware\TrustProxies.php 39 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * Sets the trusted proxies on the request. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function setTrustedProxyIpAddresses(Request $request) { $trustedIps = $this->proxies() ?: config('trustedproxy.proxies'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 119 then Illuminate\Pipeline\Pipeline return $this; } null /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null return $pipeline($this->passable); } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { return $this->then(function ($passable) { return $passable; }); } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Facade::clearResolvedInstance('request'); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php:197-201 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\public\index.php 51 [top] null | | Composer provides a convenient, automatically generated class loader for | this application. We just need to utilize it! We'll simply require it | into the script here so we don't need to manually load our classes. | */ null require __DIR__.'/../vendor/autoload.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request using | the application's HTTP kernel. Then, we will send the response back | to this client's browser, allowing them to enjoy our application. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() )->send(); null $kernel->terminate($request, $response); null  true http://qilqana.test/charges null GET Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0    qilqana.test keep-alive max-age=0 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 http://qilqana.test/charges gzip, deflate es-419,es;q=0.9,en;q=0.8,ja;q=0.7,th;q=0.6,ko;q=0.5 <CENSORED> 1|LMdigGaD4gInPG7UFT4HNiNSjzg9MiGxyUL8xYezcWkTiJpCTMFS5tsxjGPG|$2y$12$WbJyS7sgPdXNvaihX7CNXe9HlrIjg9GQx9pfIqWmY6LTNrDNKzzEa u1GnxmSu44kIW5DOHkL8h3Ritba0zDkFribOr0JX KE8nAtbHhTVpq7GkZNPabTwwlapPT2QsgK4zaLQn u1GnxmSu44kIW5DOHkL8h3Ritba0zDkFribOr0JX 1 http://qilqana.test/charges   charges.index  App\Http\Controllers\ChargeController@index web auth 1 ADMIN ADMIN 000000000 2026-04-20T00:59:38.000000Z 2026-04-20T00:59:38.000000Z 1 ADMINISTRADOR web 2026-04-20T00:59:38.000000Z 2026-04-20T00:59:38.000000Z App\Models\User 1 1 C:\laragon\www\Qilqana\resources\views\charges\partials\item-actions.blade.php <pre class=sf-dump id=sf-dump-349427384 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\ViewErrorBag</span> {<a class=sf-dump-ref>#1363</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">bags</span>: []
</samp>}
</pre><script>Sfdump("sf-dump-349427384", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1157748384 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1486</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-1157748384", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1592969531 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1522</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-1592969531", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1578463610 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1545</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-1578463610", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1047542991 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1454</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:2</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1437</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
    <span class=sf-dump-index>1</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1438</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-1047542991", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1019129081 data-indent-pad="  "><span class=sf-dump-num>2</span>
</pre><script>Sfdump("sf-dump-1019129081", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1649348231 data-indent-pad="  "><span class=sf-dump-num>2</span>
</pre><script>Sfdump("sf-dump-1649348231", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1040088838 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1040088838", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-687819659 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1555</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\User
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">User</span></span> {<a class=sf-dump-ref>#1556</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="5 characters">users</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: []
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: <span class=sf-dump-note>array:2</span> [ &#8230;2]
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:4</span> [ &#8230;4]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">rememberTokenName</span>: "<span class=sf-dump-str title="14 characters">remember_token</span>"
      #<span class=sf-dump-protected title="Protected property">accessToken</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">roleClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">permissionClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardPermissionsIndex</span>: <span class=sf-dump-const title="Uninitialized property">? array</span>
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-687819659", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-171398499 data-indent-pad="  "><span class=sf-dump-note>array:1</span> [<samp data-depth=1 class=sf-dump-expanded>
  <span class=sf-dump-index>0</span> => "<span class=sf-dump-str title="4 characters">2026</span>"
</samp>]
</pre><script>Sfdump("sf-dump-171398499", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1697562933 data-indent-pad="  "><span class=sf-dump-num>5</span>
</pre><script>Sfdump("sf-dump-1697562933", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-265737834 data-indent-pad="  "><span class=sf-dump-const>true</span>
</pre><script>Sfdump("sf-dump-265737834", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1461706252 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-1461706252", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1081295200 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-1081295200", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-304396856 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-304396856", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-33138200 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-33138200", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1027146431 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-1027146431", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-90790153 data-indent-pad="  "><span class=sf-dump-num>1</span>
</pre><script>Sfdump("sf-dump-90790153", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1851229232 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1603</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-1851229232", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1685379530 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1685379530", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1694901029 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1694901029", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-833964560 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-833964560", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-686398910 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-686398910", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1161568453 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1161568453", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1912013885 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1912013885", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1875420754 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1875420754", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-6729605 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-6729605", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-2063289762 data-indent-pad="  "><span class=sf-dump-const>true</span>
</pre><script>Sfdump("sf-dump-2063289762", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-640110075 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1454</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:2</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1437</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
    <span class=sf-dump-index>1</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1438</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-640110075", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-658371512 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-658371512", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-848814136 data-indent-pad="  ">{<a class=sf-dump-ref>#1605</a><samp data-depth=1 class=sf-dump-expanded>
  +"<span class=sf-dump-public title="Runtime added dynamic property">iteration</span>": <span class=sf-dump-num>1</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">index</span>": <span class=sf-dump-num>0</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">remaining</span>": <span class=sf-dump-num>1</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">count</span>": <span class=sf-dump-num>2</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">first</span>": <span class=sf-dump-const>true</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">last</span>": <span class=sf-dump-const>false</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">odd</span>": <span class=sf-dump-const>true</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">even</span>": <span class=sf-dump-const>false</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">depth</span>": <span class=sf-dump-num>1</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">parent</span>": <span class=sf-dump-const>null</span>
</samp>}
</pre><script>Sfdump("sf-dump-848814136", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1032300644 data-indent-pad="  "><span class=sf-dump-const>false</span>
</pre><script>Sfdump("sf-dump-1032300644", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-761311990 data-indent-pad="  "><span class=sf-dump-note>App\Models\Charge</span> {<a class=sf-dump-ref>#1437</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
  #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
  #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
  #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
  +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
  #<span class=sf-dump-protected title="Protected property">with</span>: []
  #<span class=sf-dump-protected title="Protected property">withCount</span>: []
  +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
  +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
  +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>id</span>" => <span class=sf-dump-num>2</span>
    "<span class=sf-dump-key>n_charge</span>" => "<span class=sf-dump-str>2</span>"
    "<span class=sf-dump-key>asunto</span>" => "<span class=sf-dump-str title="6 characters">asunto</span>"
    "<span class=sf-dump-key>charge_period</span>" => "<span class=sf-dump-str title="4 characters">2026</span>"
    "<span class=sf-dump-key>document_date</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>tipo_interesado</span>" => "<span class=sf-dump-str title="15 characters">Persona Natural</span>"
    "<span class=sf-dump-key>user_id</span>" => <span class=sf-dump-num>1</span>
    "<span class=sf-dump-key>natural_person_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>legal_entity_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>resolucion_id</span>" => <span class=sf-dump-num>230642</span>
    "<span class=sf-dump-key>created_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
    "<span class=sf-dump-key>updated_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>id</span>" => <span class=sf-dump-num>2</span>
    "<span class=sf-dump-key>n_charge</span>" => "<span class=sf-dump-str>2</span>"
    "<span class=sf-dump-key>asunto</span>" => "<span class=sf-dump-str title="6 characters">asunto</span>"
    "<span class=sf-dump-key>charge_period</span>" => "<span class=sf-dump-str title="4 characters">2026</span>"
    "<span class=sf-dump-key>document_date</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>tipo_interesado</span>" => "<span class=sf-dump-str title="15 characters">Persona Natural</span>"
    "<span class=sf-dump-key>user_id</span>" => <span class=sf-dump-num>1</span>
    "<span class=sf-dump-key>natural_person_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>legal_entity_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>resolucion_id</span>" => <span class=sf-dump-num>230642</span>
    "<span class=sf-dump-key>created_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
    "<span class=sf-dump-key>updated_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">changes</span>: []
  #<span class=sf-dump-protected title="Protected property">casts</span>: []
  #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
  #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
  #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
  #<span class=sf-dump-protected title="Protected property">appends</span>: []
  #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
  #<span class=sf-dump-protected title="Protected property">observables</span>: []
  #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>user</span>" => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\User
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">User</span></span> {<a class=sf-dump-ref>#1442</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="5 characters">users</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: []
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: <span class=sf-dump-note>array:2</span> [ &#8230;2]
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:4</span> [ &#8230;4]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">rememberTokenName</span>: "<span class=sf-dump-str title="14 characters">remember_token</span>"
      #<span class=sf-dump-protected title="Protected property">accessToken</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">roleClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">permissionClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardPermissionsIndex</span>: <span class=sf-dump-const title="Uninitialized property">? array</span>
    </samp>}
    "<span class=sf-dump-key>naturalPerson</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>legalEntity</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>signature</span>" => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Signature
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Signature</span></span> {<a class=sf-dump-ref>#1457</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="10 characters">signatures</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:15</span> [ &#8230;15]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:15</span> [ &#8230;15]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:2</span> [ &#8230;2]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
    "<span class=sf-dump-key>resolucion</span>" => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Resolucion
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Resolucion</span></span> {<a class=sf-dump-ref>#1469</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="11 characters">resolucions</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: []
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:7</span> [ &#8230;7]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">dates</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">touches</span>: []
  +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
  +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">hidden</span>: []
  #<span class=sf-dump-protected title="Protected property">visible</span>: []
  #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => "<span class=sf-dump-str title="8 characters">n_charge</span>"
    <span class=sf-dump-index>1</span> => "<span class=sf-dump-str title="13 characters">charge_period</span>"
    <span class=sf-dump-index>2</span> => "<span class=sf-dump-str title="13 characters">document_date</span>"
    <span class=sf-dump-index>3</span> => "<span class=sf-dump-str title="7 characters">user_id</span>"
    <span class=sf-dump-index>4</span> => "<span class=sf-dump-str title="13 characters">resolucion_id</span>"
    <span class=sf-dump-index>5</span> => "<span class=sf-dump-str title="15 characters">tipo_interesado</span>"
    <span class=sf-dump-index>6</span> => "<span class=sf-dump-str title="17 characters">natural_person_id</span>"
    <span class=sf-dump-index>7</span> => "<span class=sf-dump-str title="15 characters">legal_entity_id</span>"
    <span class=sf-dump-index>8</span> => "<span class=sf-dump-str title="6 characters">asunto</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => "<span class=sf-dump-str>*</span>"
  </samp>]
</samp>}
</pre><script>Sfdump("sf-dump-761311990", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-816812616 data-indent-pad="  "><span class=sf-dump-const>true</span>
</pre><script>Sfdump("sf-dump-816812616", {"maxDepth":3,"maxStringLength":160})</script> 8.2.10 10.50.2 es false true local   select * from `sessions` where `id` = ? limit 1 20.98 mysql KE8nAtbHhTVpq7GkZNPabTwwlapPT2QsgK4zaLQn 1777123968.7847 select * from `users` where `id` = ? limit 1 1.22 mysql 1 1777123968.7959 select `value` from `settings` where `key` = ? limit 1 0.73 mysql charge_period 1777123968.8001 select `roles`.*, `model_has_roles`.`model_id` as `pivot_model_id`, `model_has_roles`.`role_id` as `pivot_role_id`, `model_has_roles`.`model_type` as `pivot_model_type` from `roles` inner join `model_has_roles` on `roles`.`id` = `model_has_roles`.`role_id` where `model_has_roles`.`model_id` in (1) and `model_has_roles`.`model_type` = ? 0.94 mysql App\Models\User 1777123968.8069 select * from `charges` where `resolucion_id` is not null and (`charge_period` = ? or `charge_period` is null) order by `created_at` desc 1.05 mysql 2026 1777123968.8103 select * from `users` where `users`.`id` in (1) 0.76 mysql  1777123968.8132 select * from `signatures` where `signatures`.`charge_id` in (1, 2) 0.85 mysql  1777123968.8166 select * from `users` where `users`.`id` in (1) 0.54 mysql  1777123968.8175 select * from `users` where `users`.`id` in (1) 0.57 mysql  1777123968.8184 select * from `resolucions` where `resolucions`.`id` in (224071, 230642) 0.66 mysql  1777123968.8195 select * from `charges` where `user_id` = ? and `resolucion_id` is null and (`charge_period` = ? or `charge_period` is null) order by `created_at` desc 0.81 mysql 1 2026 1777123968.8207 select * from `charges` where `resolucion_id` is null and exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `assigned_to` = ?) and `tipo_interesado` not in (?, ?) and (`charge_period` = ? or `charge_period` is null) and exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` != ?) order by `created_at` desc 1.33 mysql 1 Persona Juridica Persona Natural 2026 rechazado 1777123968.823 select * from `charges` where `user_id` = ? and `resolucion_id` is null and `tipo_interesado` in (?, ?) and (`charge_period` = ? or `charge_period` is null) order by `created_at` desc 0.9 mysql 1 Persona Juridica Persona Natural 2026 1777123968.8243 select count(*) as aggregate from `charges` where exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` = ?) 0.96 mysql firmado 1777123968.8257 select count(*) as aggregate from `charges` where exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` = ?) 0.74 mysql pendiente 1777123968.8268 select * from `users` where `id` != ? order by `name` asc 0.88 mysql 1 1777123968.8279 select distinct `charge_period` from `charges` where `charge_period` is not null order by `charge_period` desc 0.77 mysql  1777123968.8291 select `value` from `settings` where `key` = ? limit 1 0.64 mysql charges_refresh_interval 1777123968.83 local null null C:\laragon\www\Qilqana null edc87b35-958b-4ca2-a72e-40241e37e51b null null phpstorm auto false C:\laragon\www\Qilqana null true false \ Clipboard %path:%line true Sublime subl://open?url=file://%path&line=%line TextMate txmt://open?url=file://%path&line=%line Emacs emacs://open?url=file://%path&line=%line MacVim mvim://open/?url=file://%path&line=%line PhpStorm phpstorm://open?file=%path&line=%line PHPStorm Remote javascript:r = new XMLHttpRequest;r.open("get", "http://localhost:63342/api/file/%path:%line");r.send() Idea idea://open?file=%path&line=%line VS Code vscode://file/%path:%line VS Code Insiders vscode-insiders://file/%path:%line VS Code Remote vscode://vscode-remote/%path:%line VS Code Insiders Remote vscode-insiders://vscode-remote/%path:%line VS Codium vscodium://file/%path:%line Cursor cursor://file/%path:%line Atom atom://core/open/file?filename=%path&line=%line Nova nova://open?path=%path&line=%line NetBeans netbeans://open/?f=%path:%line Zed zed://file/%path:%line Windsurf windsurf://file/%path:%line Xdebug xdebug://%path@%line https://flareapp.io/api/public-reports  /_ignition/update-config C:\laragon\www\Qilqana\app\Models\Charge.php 68 handleError Illuminate\Foundation\Bootstrap\HandleExceptions { return $this->hasOne(Signature::class); } null /* Accessors para optimizar vistas */ null public function getInteresadoLabelAttribute(): string { switch ($this->tipo_interesado) { case 'Persona Juridica': return $this->legalEntity?->razon_social ?: $this->legalEntity?->ruc ?: '---'; case 'Persona Natural': $person = $this->naturalPerson; $fullName = trim(($person->nombres ?? '').' '.($person->apellido_paterno ?? '').' '.($person->apellido_materno ?? '')); null return $fullName !== '' ? $fullName : ($person->dni ?: '---'); case 'Trabajador UGEL': return $this->user?->name.' '.$this->user?->last_name ?: '---'; default: return '---'; } } null public function getHasSignatureAttribute(): bool { return (bool) ($this->signature?->signature_root); } null public function getHasCartaPoderAttribute(): bool {  true app\Models\Charge.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Bootstrap\HandleExceptions.php 255 Illuminate\Foundation\Bootstrap\{closure} Illuminate\Foundation\Bootstrap\HandleExceptions * @return \Symfony\Component\ErrorHandler\Error\FatalError */ protected function fatalErrorFromPhpError(array $error, $traceOffset = null) { return new FatalError($error['message'], 0, $error, $traceOffset); } null /** * Forward a method call to the given method if an application instance exists. * * @return callable */ protected function forwardsTo($method) { return fn (...$arguments) => static::$app ? $this->{$method}(...$arguments) : false; } null /** * Determine if the error level is a deprecation. * * @param  int  $level * @return bool */ protected function isDeprecation($level) { return in_array($level, [E_DEPRECATED, E_USER_DEPRECATED]); } null level 2 int false false false message Attempt to read property "dni" on null string false false false file C:\laragon\www\Qilqana\app\Models\Charge.php string false false false line 68 int false false false false vendor\laravel\framework\src\Illuminate\Foundation\Bootstrap\HandleExceptions.php C:\laragon\www\Qilqana\app\Models\Charge.php 68 getInteresadoLabelAttribute App\Models\Charge { return $this->hasOne(Signature::class); } null /* Accessors para optimizar vistas */ null public function getInteresadoLabelAttribute(): string { switch ($this->tipo_interesado) { case 'Persona Juridica': return $this->legalEntity?->razon_social ?: $this->legalEntity?->ruc ?: '---'; case 'Persona Natural': $person = $this->naturalPerson; $fullName = trim(($person->nombres ?? '').' '.($person->apellido_paterno ?? '').' '.($person->apellido_materno ?? '')); null return $fullName !== '' ? $fullName : ($person->dni ?: '---'); case 'Trabajador UGEL': return $this->user?->name.' '.$this->user?->last_name ?: '---'; default: return '---'; } } null public function getHasSignatureAttribute(): bool { return (bool) ($this->signature?->signature_root); } null public function getHasCartaPoderAttribute(): bool { arg0 2 int false false false arg1 Attempt to read property "dni" on null string false false false arg2 C:\laragon\www\Qilqana\app\Models\Charge.php string false false false arg3 68 int false false false true app\Models\Charge.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 658 mutateAttribute Illuminate\Database\Eloquent\Model return static::$getAttributeMutatorCache[get_class($this)][$key] = false; } null return static::$getAttributeMutatorCache[get_class($this)][$key] = is_callable($this->{Str::camel($key)}()->get); } null /** * Get the value of an attribute using its mutator. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function mutateAttribute($key, $value) { return $this->{'get'.Str::studly($key).'Attribute'}($value); } null /** * Get the value of an "Attribute" return type marked attribute using its mutator. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function mutateAttributeMarkedAttribute($key, $value) { if (array_key_exists($key, $this->attributeCastCache)) { return $this->attributeCastCache[$key]; } arg0 null null false false false false vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 2124 transformModelValue Illuminate\Database\Eloquent\Model } null /** * Transform a raw model value using mutators, casts, etc. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transformModelValue($key, $value) { // If the attribute has a get mutator, we will call that then return what // it returns as the value, which is useful for transforming values on // retrieval from the model to a form that is more useful for usage. if ($this->hasGetMutator($key)) { return $this->mutateAttribute($key, $value); } elseif ($this->hasAttributeGetMutator($key)) { return $this->mutateAttributeMarkedAttribute($key, $value); } null // If the attribute exists within the cast array, we will convert it to // an appropriate native PHP type dependent upon the associated value // given with the key in the pair. Dayle made this comment line up. if ($this->hasCast($key)) { if (static::preventsAccessingMissingAttributes() && ! array_key_exists($key, $this->attributes) && ($this->isEnumCastable($key) || in_array($this->getCastType($key), static::$primitiveCastTypes))) { $this->throwMissingAttributeExceptionIfApplicable($key); } key interesado_label string false false false value null null false false false false vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 489 getAttributeValue Illuminate\Database\Eloquent\Model null throw new MissingAttributeException($this, $key); } null return null; } null /** * Get a plain attribute (not a relationship). * * @param  string  $key * @return mixed */ public function getAttributeValue($key) { return $this->transformModelValue($key, $this->getAttributeFromArray($key)); } null /** * Get an attribute from the $attributes array. * * @param  string  $key * @return mixed */ protected function getAttributeFromArray($key) { return $this->getAttributes()[$key] ?? null; } null /** key interesado_label string false false false value null null false false false false vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 443 getAttribute Illuminate\Database\Eloquent\Model */ public function getAttribute($key) { if (! $key) { return; } null // If the attribute exists in the attribute array or has a "get" mutator we will // get the attribute's value. Otherwise, we will proceed as if the developers // are asking for a relationship's value. This covers both types of values. if (array_key_exists($key, $this->attributes) || array_key_exists($key, $this->casts) || $this->hasGetMutator($key) || $this->hasAttributeMutator($key) || $this->isClassCastable($key)) { return $this->getAttributeValue($key); } null // Here we will determine if the model base class itself contains this given key // since we don't want to treat any of those methods as relationships because // they are all intended as helper methods and none of these are relations. if (method_exists(self::class, $key)) { return $this->throwMissingAttributeExceptionIfApplicable($key); } null return $this->isRelation($key) || $this->relationLoaded($key) ? $this->getRelationValue($key) : $this->throwMissingAttributeExceptionIfApplicable($key); } null key interesado_label string false false false false vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Model.php 2227 __get Illuminate\Database\Eloquent\Model * @return string */ public function broadcastChannel() { return str_replace('\\', '.', get_class($this)).'.'.$this->getKey(); } null /** * Dynamically retrieve attributes on the model. * * @param  string  $key * @return mixed */ public function __get($key) { return $this->getAttribute($key); } null /** * Dynamically set attributes on the model. * * @param  string  $key * @param  mixed  $value * @return void */ public function __set($key, $value) { $this->setAttribute($key, $value); } null key interesado_label string false false false false vendor\laravel\framework\src\Illuminate\Database\Eloquent\Model.php C:\laragon\www\Qilqana\resources\views\charges\partials\item-actions.blade.php 40 require null <span class="material-symbols-outlined">block</span> </button> @endif null @include('charges.forms.delete', [ 'charge' => $charge, 'disabled' => ($charge->signature?->signature_status !== 'pendiente' && !Auth::user()->hasRole('ADMINISTRADOR')), ]) </div> null <div class="mt-1"> <button type="button" class="btn btn-outline-secondary btn-sm btn-view-charge-details" title="Ver detalles" data-charge-id="{{ $charge->id }}" data-n-charge="{{ $charge->n_charge }}" data-interesado="{{ $charge->interesado_label }}" data-tipo="{{ $charge->tipo_interesado }}" data-asunto="{{ $charge->asunto }}" data-fecha="{{ $charge->document_date ? \Carbon\Carbon::parse($charge->document_date)->format('d/m/Y') : '---' }}" data-user="{{ $charge->user?->name }} {{ $charge->user?->last_name }}" data-status="{{ ucfirst($charge->signature?->signature_status ?? 'pendiente') }}" data-has-signature="{{ $charge->has_signature ? '1' : '0' }}" data-signature-url="{{ route('charges.file.signature', $charge) }}" data-signer="{{ $charge->signature?->signer?->name ?? '' }} {{ $charge->signature?->signer?->last_name ?? '' }}" data-titularidad="{{ $charge->signature?->titularidad ? '1' : '0' }}" data-parentesco="{{ $charge->signature?->parentesco ?? '' }}" data-titular-name="{{ $charge->resolucion?->nombres_apellidos ?? $charge->naturalPerson?->full_name ?? '' }}" data-has-evidence="{{ $charge->has_evidence ? '1' : '0' }}" data-evidence-url="{{ route('charges.file.evidence', $charge) }}" data-has-carta-poder="{{ $charge->has_carta_poder ? '1' : '0' }}" key interesado_label string false false false true resources\views\charges\partials\item-actions.blade.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\aee3964602ead821ce0538ab38b5b82c.php string false false false false vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/aee3964602ead821ce0538ab38b5b82c.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/aee3964602ead821ce0538ab38b5b82c.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/partials/item-actions.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\resources\views\charges\partials\lists\resolution.blade.php 74 require null <div class="d-flex justify-content-between align-items-start gap-2"> <div> <div class="small text-muted">Cargo #{{ $charge->n_charge }}</div> <div class="fw-semibold">RD: {{ $charge->resolucion?->rd }}</div> <div class="small text-muted">{{ $charge->resolucion?->periodo }}</div> </div> @include('charges.partials.status-badge', [ 'status' => $charge->signature?->signature_status, ]) </div> <div class="mt-2"> <div class="small text-muted">Interesado: {{ $charge->resolucion?->nombres_apellidos }} </div> </div> <div class="mt-3"> @include('charges.partials.item-actions', [ 'charge' => $charge, 'canSign' => true, ]) </div> </div> </div> @empty <div class="text-center text-muted py-4">No hay cargos de resoluciones.</div> @endforelse </div> null {{-- VISTA ESCRITORIO --}} <div class="table-responsive d-none d-md-block"> <table class="table align-middle table-hover mb-0"> callback null null false false false true resources\views\charges\partials\lists\resolution.blade.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\9950652d1e1370f0a05e8d8b1308af59.php string false false false false vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/9950652d1e1370f0a05e8d8b1308af59.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/9950652d1e1370f0a05e8d8b1308af59.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/partials/lists/resolution.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\resources\views\charges\partials\dashboard.blade.php 127 require null </button> </li> <li class="nav-item" role="presentation"> <button class="nav-link d-flex align-items-center gap-2" id="created-tab" data-bs-toggle="tab" data-bs-target="#created-tab-pane" type="button" role="tab" aria-controls="created-tab-pane" aria-selected="false"> Creados <span class="badge bg-secondary ms-1">{{ $createdTotal }}</span> </button> </li> <li class="nav-item" role="presentation"> <button class="nav-link d-flex align-items-center gap-2" id="sent-tab" data-bs-toggle="tab" data-bs-target="#sent-tab-pane" type="button" role="tab" aria-controls="sent-tab-pane" aria-selected="false"> Enviados <span class="badge bg-secondary ms-1">{{ $sentTotal }}</span> </button> </li> </ul> null <div class="tab-content" id="charges-tabs-content"> @if ($canViewResolutionCharges) @include('charges.partials.lists.resolution', ['active' => true]) @endif null @include('charges.partials.lists.received', ['active' => !$canViewResolutionCharges]) null @include('charges.partials.lists.created') null @include('charges.partials.lists.sent') </div> null callback null null false false false true resources\views\charges\partials\dashboard.blade.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\5ad9442a6a0a540f7d994a78d05830d2.php string false false false false vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/5ad9442a6a0a540f7d994a78d05830d2.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/5ad9442a6a0a540f7d994a78d05830d2.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/partials/dashboard.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\resources\views\charges\index.blade.php 42 require null <h5 class="mb-2">Errores durante la importacion:</h5> <ul class="mb-0"> @foreach (session('errores') as $error) <li>{{ $error }}</li> @endforeach </ul> </div> @endif null @if (session('success')) <div class="alert alert-success shadow-sm"> {{ session('success') }} </div> @endif <div id="charges-dashboard" data-refresh-interval="{{ $refreshIntervalSeconds ?? 5 }}" data-refresh-url="{{ route('charges.refresh') }}"> @include('charges.partials.dashboard') </div> </div> {{-- Formularios de crear cargos --}} @include('charges.forms.create') null {{-- Formularios de editar cargos --}} @include('charges.forms.edit') null {{-- Formularios de firmar cargos --}} @include('charges.forms.sign') null {{-- Formularios de rechazar cargos --}} @include('charges.forms.reject') null callback null null false false false true resources\views\charges\index.blade.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\15d308017064a4a142ff7af4cc62d614.php string false false false false vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/15d308017064a4a142ff7af4cc62d614.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/15d308017064a4a142ff7af4cc62d614.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/index.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Response.php 69 setContent Illuminate\Http\Response // from routes that will be automatically transformed to their JSON form. if ($this->shouldBeJson($content)) { $this->header('Content-Type', 'application/json'); null $content = $this->morphToJson($content); null if ($content === false) { throw new InvalidArgumentException(json_last_error_msg()); } } null // If this content implements the "Renderable" interface then we will call the // render method on the object so we will avoid any "__toString" exceptions // that might be thrown and have their errors obscured by PHP's handling. elseif ($content instanceof Renderable) { $content = $content->render(); } null parent::setContent($content); null return $this; } null /** * Determine if the given content should be turned into JSON. * * @param  mixed  $content * @return bool */ protected function shouldBeJson($content) callback null null false false false false vendor\laravel\framework\src\Illuminate\Http\Response.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Response.php 35 __construct Illuminate\Http\Response null /** * Create a new HTTP response. * * @param  mixed  $content * @param  int  $status * @param  array  $headers * @return void * * @throws \InvalidArgumentException */ public function __construct($content = '', $status = 200, array $headers = []) { $this->headers = new ResponseHeaderBag($headers); null $this->setContent($content); $this->setStatusCode($status); $this->setProtocolVersion('1.0'); } null /** * Set the content on the response. * * @param  mixed  $content * @return $this * * @throws \InvalidArgumentException */ public function setContent(mixed $content): static { null false vendor\laravel\framework\src\Illuminate\Http\Response.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 918 toResponse Illuminate\Routing\Router if ($response instanceof PsrResponseInterface) { $response = (new HttpFoundationFactory)->createResponse($response); } elseif ($response instanceof Model && $response->wasRecentlyCreated) { $response = new JsonResponse($response, 201); } elseif ($response instanceof Stringable) { $response = new Response($response->__toString(), 200, ['Content-Type' => 'text/html']); } elseif (! $response instanceof SymfonyResponse && ($response instanceof Arrayable || $response instanceof Jsonable || $response instanceof ArrayObject || $response instanceof JsonSerializable || $response instanceof stdClass || is_array($response))) { $response = new JsonResponse($response); } elseif (! $response instanceof SymfonyResponse) { $response = new Response($response, 200, ['Content-Type' => 'text/html']); } null if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) { $response->setNotModified(); } null return $response->prepare($request); } null /** * Substitute the route bindings onto the route. * * @param  \Illuminate\Routing\Route  $route * @return \Illuminate\Routing\Route null false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 885 prepareResponse Illuminate\Routing\Router { return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all(); } null /** * Create a response instance from the given value. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { $this->events->dispatch(new PreparingResponse($request, $response)); null return tap(static::toResponse($request, $response), function ($response) use ($request) { $this->events->dispatch(new ResponsePrepared($request, $response)); }); } null /** * Static version of prepareResponse. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public static function toResponse($request, $response) { if ($response instanceof Responsable) { null false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 805 Illuminate\Routing\{closure} Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 144 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline return $this->then(function ($passable) { return $passable; }); } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\boost\src\Middleware\InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\boost\src\Middleware\InjectBoost.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Middleware\SubstituteBindings.php 50 handle Illuminate\Routing\Middleware\SubstituteBindings public function __construct(Registrar $router) { $this->router = $router; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { try { $this->router->substituteBindings($route = $request->route()); null $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Routing\Middleware\SubstituteBindings.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Auth\Middleware\Authenticate.php 57 handle Illuminate\Auth\Middleware\Authenticate null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @param  string[]  ...$guards * @return mixed * * @throws \Illuminate\Auth\AuthenticationException */ public function handle($request, Closure $next, ...$guards) { $this->authenticate($request, $guards); null return $next($request); } null /** * Determine if the user is logged in to any of the given guards. * * @param  \Illuminate\Http\Request  $request * @param  array  $guards * @return void * * @throws \Illuminate\Auth\AuthenticationException */ protected function authenticate($request, array $guards) { if (empty($guards)) { arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Auth\Middleware\Authenticate.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false guards  array false true false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\VerifyCsrfToken.php 78 handle Illuminate\Foundation\Http\Middleware\VerifyCsrfToken * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\VerifyCsrfToken.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Middleware\ShareErrorsFromSession.php 49 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // Putting the errors in the view for every view allows the developer to just // assume that some errors are always available, which is convenient since // they don't have to continually run checks for the presence of errors. null return $next($request); } } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\View\Middleware\ShareErrorsFromSession.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php 121 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // Again, if the session has been configured we will need to close out the session // so that the attributes may be persisted to some storage medium. We will also // add the session identifier cookie to the application response headers now. $this->saveSession($request); null return $response; } null /** arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php 64 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * Handle the given request within session state. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleRequestWhileBlocking(Request $request, $session, Closure $next) { if (! $request->route() instanceof Route) { return; request GET http://qilqana.test/charges Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse.php 37 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies * @return void */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Cookie\Middleware\EncryptCookies.php 67 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * Decrypt the cookies on the request. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @return \Symfony\Component\HttpFoundation\Request */ protected function decrypt(Request $request) { foreach ($request->cookies as $key => $cookie) { if ($this->isDisabled($key)) { continue; } arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Cookie\Middleware\EncryptCookies.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 119 then Illuminate\Pipeline\Pipeline return $this; } null /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null return $pipeline($this->passable); } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { return $this->then(function ($passable) { return $passable; }); } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 805 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php:805-807 Closure false false false false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 784 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * Run the given route within a Stack "onion" instance. * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 748 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * Dispatch the request to a route and return the response. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request)); } null /** * Find the route matching a given request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Routing\Route */ protected function findRoute($request) { $this->events->dispatch(new Routing($request)); null $this->current = $route = $this->routes->match($request); null request GET http://qilqana.test/charges Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 737 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * Dispatch the request to a route and return the response. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request)); } null /** request GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 200 Illuminate\Foundation\Http\{closure} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * Call the terminate method on any terminable middleware. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Http\Response  $response * @return void */ public function terminate($request, $response) { $this->terminateMiddleware($request, $response); null request GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 144 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline return $this->then(function ($passable) { return $passable; }); } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TrimStrings.php 40 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { if (in_array($key, $this->except, true) || ! is_string($value)) { return $value; } request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TrimStrings.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ValidatePostSize.php 27 handle Illuminate\Foundation\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException; } null return $next($request); } null /** * Determine the server 'post_max_size' as bytes. * * @return int */ protected function getPostMaxSize() { if (is_numeric($postMaxSize = ini_get('post_max_size'))) { return (int) $postMaxSize; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ValidatePostSize.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance.php 99 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * Determine if the incoming request has a maintenance mode bypass cookie. * * @param  \Illuminate\Http\Request  $request * @param  array  $data * @return bool */ protected function hasValidBypassCookie($request, array $data) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Middleware\HandleCors.php 49 handle Illuminate\Http\Middleware\HandleCors { $this->container = $container; $this->cors = $cors; } null /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Http\Middleware\HandleCors.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Middleware\TrustProxies.php 39 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * Sets the trusted proxies on the request. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function setTrustedProxyIpAddresses(Request $request) { $trustedIps = $this->proxies() ?: config('trustedproxy.proxies'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Http\Middleware\TrustProxies.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 119 then Illuminate\Pipeline\Pipeline return $this; } null /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null return $pipeline($this->passable); } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { return $this->then(function ($passable) { return $passable; }); } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Facade::clearResolvedInstance('request'); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php:197-201 Closure false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php C:\laragon\www\Qilqana\public\index.php 51 [top] null | | Composer provides a convenient, automatically generated class loader for | this application. We just need to utilize it! We'll simply require it | into the script here so we don't need to manually load our classes. | */ null require __DIR__.'/../vendor/autoload.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request using | the application's HTTP kernel. Then, we will send the response back | to this client's browser, allowing them to enjoy our application. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() )->send(); null $kernel->terminate($request, $response); null  true public\index.php http://qilqana.test/charges null GET Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0    select * from `sessions` where `id` = ? limit 1 20.98 mysql KE8nAtbHhTVpq7GkZNPabTwwlapPT2QsgK4zaLQn 1777123968.7847 select * from `users` where `id` = ? limit 1 1.22 mysql 1 1777123968.7959 select `value` from `settings` where `key` = ? limit 1 0.73 mysql charge_period 1777123968.8001 select `roles`.*, `model_has_roles`.`model_id` as `pivot_model_id`, `model_has_roles`.`role_id` as `pivot_role_id`, `model_has_roles`.`model_type` as `pivot_model_type` from `roles` inner join `model_has_roles` on `roles`.`id` = `model_has_roles`.`role_id` where `model_has_roles`.`model_id` in (1) and `model_has_roles`.`model_type` = ? 0.94 mysql App\Models\User 1777123968.8069 select * from `charges` where `resolucion_id` is not null and (`charge_period` = ? or `charge_period` is null) order by `created_at` desc 1.05 mysql 2026 1777123968.8103 select * from `users` where `users`.`id` in (1) 0.76 mysql  1777123968.8132 select * from `signatures` where `signatures`.`charge_id` in (1, 2) 0.85 mysql  1777123968.8166 select * from `users` where `users`.`id` in (1) 0.54 mysql  1777123968.8175 select * from `users` where `users`.`id` in (1) 0.57 mysql  1777123968.8184 select * from `resolucions` where `resolucions`.`id` in (224071, 230642) 0.66 mysql  1777123968.8195 select * from `charges` where `user_id` = ? and `resolucion_id` is null and (`charge_period` = ? or `charge_period` is null) order by `created_at` desc 0.81 mysql 1 2026 1777123968.8207 select * from `charges` where `resolucion_id` is null and exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `assigned_to` = ?) and `tipo_interesado` not in (?, ?) and (`charge_period` = ? or `charge_period` is null) and exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` != ?) order by `created_at` desc 1.33 mysql 1 Persona Juridica Persona Natural 2026 rechazado 1777123968.823 select * from `charges` where `user_id` = ? and `resolucion_id` is null and `tipo_interesado` in (?, ?) and (`charge_period` = ? or `charge_period` is null) order by `created_at` desc 0.9 mysql 1 Persona Juridica Persona Natural 2026 1777123968.8243 select count(*) as aggregate from `charges` where exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` = ?) 0.96 mysql firmado 1777123968.8257 select count(*) as aggregate from `charges` where exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` = ?) 0.74 mysql pendiente 1777123968.8268 select * from `users` where `id` != ? order by `name` asc 0.88 mysql 1 1777123968.8279 select distinct `charge_period` from `charges` where `charge_period` is not null order by `charge_period` desc 0.77 mysql  1777123968.8291 select `value` from `settings` where `key` = ? limit 1 0.64 mysql charges_refresh_interval 1777123968.83   null qilqana.test keep-alive max-age=0 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 http://qilqana.test/charges gzip, deflate es-419,es;q=0.9,en;q=0.8,ja;q=0.7,th;q=0.6,ko;q=0.5 <CENSORED> 1|LMdigGaD4gInPG7UFT4HNiNSjzg9MiGxyUL8xYezcWkTiJpCTMFS5tsxjGPG|$2y$12$WbJyS7sgPdXNvaihX7CNXe9HlrIjg9GQx9pfIqWmY6LTNrDNKzzEa u1GnxmSu44kIW5DOHkL8h3Ritba0zDkFribOr0JX KE8nAtbHhTVpq7GkZNPabTwwlapPT2QsgK4zaLQn u1GnxmSu44kIW5DOHkL8h3Ritba0zDkFribOr0JX 1 http://qilqana.test/charges   8.2.10 10.50.2 es false true local 1 ADMIN ADMIN 000000000 2026-04-20T00:59:38.000000Z 2026-04-20T00:59:38.000000Z 1 ADMINISTRADOR web 2026-04-20T00:59:38.000000Z 2026-04-20T00:59:38.000000Z App\Models\User 1 1 charges.index  App\Http\Controllers\ChargeController@index web auth null null C:\laragon\www\Qilqana\resources\views\charges\partials\item-actions.blade.php <pre class=sf-dump id=sf-dump-349427384 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\ViewErrorBag</span> {<a class=sf-dump-ref>#1363</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">bags</span>: []
</samp>}
</pre><script>Sfdump("sf-dump-349427384", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1157748384 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1486</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-1157748384", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1592969531 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1522</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-1592969531", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1578463610 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1545</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-1578463610", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1047542991 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1454</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:2</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1437</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
    <span class=sf-dump-index>1</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1438</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-1047542991", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1019129081 data-indent-pad="  "><span class=sf-dump-num>2</span>
</pre><script>Sfdump("sf-dump-1019129081", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1649348231 data-indent-pad="  "><span class=sf-dump-num>2</span>
</pre><script>Sfdump("sf-dump-1649348231", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1040088838 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1040088838", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-687819659 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1555</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\User
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">User</span></span> {<a class=sf-dump-ref>#1556</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="5 characters">users</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: []
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: <span class=sf-dump-note>array:2</span> [ &#8230;2]
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:4</span> [ &#8230;4]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">rememberTokenName</span>: "<span class=sf-dump-str title="14 characters">remember_token</span>"
      #<span class=sf-dump-protected title="Protected property">accessToken</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">roleClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">permissionClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardPermissionsIndex</span>: <span class=sf-dump-const title="Uninitialized property">? array</span>
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-687819659", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-171398499 data-indent-pad="  "><span class=sf-dump-note>array:1</span> [<samp data-depth=1 class=sf-dump-expanded>
  <span class=sf-dump-index>0</span> => "<span class=sf-dump-str title="4 characters">2026</span>"
</samp>]
</pre><script>Sfdump("sf-dump-171398499", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1697562933 data-indent-pad="  "><span class=sf-dump-num>5</span>
</pre><script>Sfdump("sf-dump-1697562933", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-265737834 data-indent-pad="  "><span class=sf-dump-const>true</span>
</pre><script>Sfdump("sf-dump-265737834", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1461706252 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-1461706252", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1081295200 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-1081295200", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-304396856 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-304396856", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-33138200 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-33138200", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1027146431 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-1027146431", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-90790153 data-indent-pad="  "><span class=sf-dump-num>1</span>
</pre><script>Sfdump("sf-dump-90790153", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1851229232 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1603</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-1851229232", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1685379530 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1685379530", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1694901029 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1694901029", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-833964560 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-833964560", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-686398910 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-686398910", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1161568453 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1161568453", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1912013885 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1912013885", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1875420754 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1875420754", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-6729605 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-6729605", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-2063289762 data-indent-pad="  "><span class=sf-dump-const>true</span>
</pre><script>Sfdump("sf-dump-2063289762", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-640110075 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1454</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:2</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1437</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
    <span class=sf-dump-index>1</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1438</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-640110075", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-658371512 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-658371512", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-848814136 data-indent-pad="  ">{<a class=sf-dump-ref>#1605</a><samp data-depth=1 class=sf-dump-expanded>
  +"<span class=sf-dump-public title="Runtime added dynamic property">iteration</span>": <span class=sf-dump-num>1</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">index</span>": <span class=sf-dump-num>0</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">remaining</span>": <span class=sf-dump-num>1</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">count</span>": <span class=sf-dump-num>2</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">first</span>": <span class=sf-dump-const>true</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">last</span>": <span class=sf-dump-const>false</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">odd</span>": <span class=sf-dump-const>true</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">even</span>": <span class=sf-dump-const>false</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">depth</span>": <span class=sf-dump-num>1</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">parent</span>": <span class=sf-dump-const>null</span>
</samp>}
</pre><script>Sfdump("sf-dump-848814136", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1032300644 data-indent-pad="  "><span class=sf-dump-const>false</span>
</pre><script>Sfdump("sf-dump-1032300644", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-761311990 data-indent-pad="  "><span class=sf-dump-note>App\Models\Charge</span> {<a class=sf-dump-ref>#1437</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
  #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
  #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
  #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
  +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
  #<span class=sf-dump-protected title="Protected property">with</span>: []
  #<span class=sf-dump-protected title="Protected property">withCount</span>: []
  +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
  +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
  +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>id</span>" => <span class=sf-dump-num>2</span>
    "<span class=sf-dump-key>n_charge</span>" => "<span class=sf-dump-str>2</span>"
    "<span class=sf-dump-key>asunto</span>" => "<span class=sf-dump-str title="6 characters">asunto</span>"
    "<span class=sf-dump-key>charge_period</span>" => "<span class=sf-dump-str title="4 characters">2026</span>"
    "<span class=sf-dump-key>document_date</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>tipo_interesado</span>" => "<span class=sf-dump-str title="15 characters">Persona Natural</span>"
    "<span class=sf-dump-key>user_id</span>" => <span class=sf-dump-num>1</span>
    "<span class=sf-dump-key>natural_person_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>legal_entity_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>resolucion_id</span>" => <span class=sf-dump-num>230642</span>
    "<span class=sf-dump-key>created_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
    "<span class=sf-dump-key>updated_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>id</span>" => <span class=sf-dump-num>2</span>
    "<span class=sf-dump-key>n_charge</span>" => "<span class=sf-dump-str>2</span>"
    "<span class=sf-dump-key>asunto</span>" => "<span class=sf-dump-str title="6 characters">asunto</span>"
    "<span class=sf-dump-key>charge_period</span>" => "<span class=sf-dump-str title="4 characters">2026</span>"
    "<span class=sf-dump-key>document_date</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>tipo_interesado</span>" => "<span class=sf-dump-str title="15 characters">Persona Natural</span>"
    "<span class=sf-dump-key>user_id</span>" => <span class=sf-dump-num>1</span>
    "<span class=sf-dump-key>natural_person_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>legal_entity_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>resolucion_id</span>" => <span class=sf-dump-num>230642</span>
    "<span class=sf-dump-key>created_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
    "<span class=sf-dump-key>updated_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">changes</span>: []
  #<span class=sf-dump-protected title="Protected property">casts</span>: []
  #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
  #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
  #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
  #<span class=sf-dump-protected title="Protected property">appends</span>: []
  #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
  #<span class=sf-dump-protected title="Protected property">observables</span>: []
  #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>user</span>" => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\User
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">User</span></span> {<a class=sf-dump-ref>#1442</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="5 characters">users</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: []
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: <span class=sf-dump-note>array:2</span> [ &#8230;2]
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:4</span> [ &#8230;4]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">rememberTokenName</span>: "<span class=sf-dump-str title="14 characters">remember_token</span>"
      #<span class=sf-dump-protected title="Protected property">accessToken</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">roleClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">permissionClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardPermissionsIndex</span>: <span class=sf-dump-const title="Uninitialized property">? array</span>
    </samp>}
    "<span class=sf-dump-key>naturalPerson</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>legalEntity</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>signature</span>" => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Signature
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Signature</span></span> {<a class=sf-dump-ref>#1457</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="10 characters">signatures</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:15</span> [ &#8230;15]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:15</span> [ &#8230;15]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:2</span> [ &#8230;2]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
    "<span class=sf-dump-key>resolucion</span>" => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Resolucion
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Resolucion</span></span> {<a class=sf-dump-ref>#1469</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="11 characters">resolucions</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: []
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:7</span> [ &#8230;7]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">dates</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">touches</span>: []
  +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
  +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">hidden</span>: []
  #<span class=sf-dump-protected title="Protected property">visible</span>: []
  #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => "<span class=sf-dump-str title="8 characters">n_charge</span>"
    <span class=sf-dump-index>1</span> => "<span class=sf-dump-str title="13 characters">charge_period</span>"
    <span class=sf-dump-index>2</span> => "<span class=sf-dump-str title="13 characters">document_date</span>"
    <span class=sf-dump-index>3</span> => "<span class=sf-dump-str title="7 characters">user_id</span>"
    <span class=sf-dump-index>4</span> => "<span class=sf-dump-str title="13 characters">resolucion_id</span>"
    <span class=sf-dump-index>5</span> => "<span class=sf-dump-str title="15 characters">tipo_interesado</span>"
    <span class=sf-dump-index>6</span> => "<span class=sf-dump-str title="17 characters">natural_person_id</span>"
    <span class=sf-dump-index>7</span> => "<span class=sf-dump-str title="15 characters">legal_entity_id</span>"
    <span class=sf-dump-index>8</span> => "<span class=sf-dump-str title="6 characters">asunto</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => "<span class=sf-dump-str>*</span>"
  </samp>]
</samp>}
</pre><script>Sfdump("sf-dump-761311990", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-816812616 data-indent-pad="  "><span class=sf-dump-const>true</span>
</pre><script>Sfdump("sf-dump-816812616", {"maxDepth":3,"maxStringLength":160})</script> null null null  web http://qilqana.test/charges ErrorException Attempt to read property "dni" on null C:\laragon\www\Qilqana null 8.2.10 10.50.2 Flare local Illuminate\Foundation\Bootstrap\HandleExceptions handleError    {"url":"http://qilqana.test/charges","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0","timestamp":"2026-04-25T13:32:56.355Z"} 
[2026-04-25 13:33:06] local.DEBUG: Laravel Client PHP 10.50.2 8.2.10 ErrorException 1777123985 Attempt to read property "dni" on null    C:\laragon\www\Qilqana\app\Models\Charge.php 68 handleError Illuminate\Foundation\Bootstrap\HandleExceptions { return $this->hasOne(Signature::class); } null /* Accessors para optimizar vistas */ null public function getInteresadoLabelAttribute(): string { switch ($this->tipo_interesado) { case 'Persona Juridica': return $this->legalEntity?->razon_social ?: $this->legalEntity?->ruc ?: '---'; case 'Persona Natural': $person = $this->naturalPerson; $fullName = trim(($person->nombres ?? '').' '.($person->apellido_paterno ?? '').' '.($person->apellido_materno ?? '')); null return $fullName !== '' ? $fullName : ($person->dni ?: '---'); case 'Trabajador UGEL': return $this->user?->name.' '.$this->user?->last_name ?: '---'; default: return '---'; } } null public function getHasSignatureAttribute(): bool { return (bool) ($this->signature?->signature_root); } null public function getHasCartaPoderAttribute(): bool {  true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Bootstrap\HandleExceptions.php 255 Illuminate\Foundation\Bootstrap\{closure} Illuminate\Foundation\Bootstrap\HandleExceptions * @return \Symfony\Component\ErrorHandler\Error\FatalError */ protected function fatalErrorFromPhpError(array $error, $traceOffset = null) { return new FatalError($error['message'], 0, $error, $traceOffset); } null /** * Forward a method call to the given method if an application instance exists. * * @return callable */ protected function forwardsTo($method) { return fn (...$arguments) => static::$app ? $this->{$method}(...$arguments) : false; } null /** * Determine if the error level is a deprecation. * * @param  int  $level * @return bool */ protected function isDeprecation($level) { return in_array($level, [E_DEPRECATED, E_USER_DEPRECATED]); } null level 2 int false false false message Attempt to read property "dni" on null string false false false file C:\laragon\www\Qilqana\app\Models\Charge.php string false false false line 68 int false false false false C:\laragon\www\Qilqana\app\Models\Charge.php 68 getInteresadoLabelAttribute App\Models\Charge { return $this->hasOne(Signature::class); } null /* Accessors para optimizar vistas */ null public function getInteresadoLabelAttribute(): string { switch ($this->tipo_interesado) { case 'Persona Juridica': return $this->legalEntity?->razon_social ?: $this->legalEntity?->ruc ?: '---'; case 'Persona Natural': $person = $this->naturalPerson; $fullName = trim(($person->nombres ?? '').' '.($person->apellido_paterno ?? '').' '.($person->apellido_materno ?? '')); null return $fullName !== '' ? $fullName : ($person->dni ?: '---'); case 'Trabajador UGEL': return $this->user?->name.' '.$this->user?->last_name ?: '---'; default: return '---'; } } null public function getHasSignatureAttribute(): bool { return (bool) ($this->signature?->signature_root); } null public function getHasCartaPoderAttribute(): bool { arg0 2 int false false false arg1 Attempt to read property "dni" on null string false false false arg2 C:\laragon\www\Qilqana\app\Models\Charge.php string false false false arg3 68 int false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 658 mutateAttribute Illuminate\Database\Eloquent\Model return static::$getAttributeMutatorCache[get_class($this)][$key] = false; } null return static::$getAttributeMutatorCache[get_class($this)][$key] = is_callable($this->{Str::camel($key)}()->get); } null /** * Get the value of an attribute using its mutator. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function mutateAttribute($key, $value) { return $this->{'get'.Str::studly($key).'Attribute'}($value); } null /** * Get the value of an "Attribute" return type marked attribute using its mutator. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function mutateAttributeMarkedAttribute($key, $value) { if (array_key_exists($key, $this->attributeCastCache)) { return $this->attributeCastCache[$key]; } arg0 null null false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 2124 transformModelValue Illuminate\Database\Eloquent\Model } null /** * Transform a raw model value using mutators, casts, etc. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transformModelValue($key, $value) { // If the attribute has a get mutator, we will call that then return what // it returns as the value, which is useful for transforming values on // retrieval from the model to a form that is more useful for usage. if ($this->hasGetMutator($key)) { return $this->mutateAttribute($key, $value); } elseif ($this->hasAttributeGetMutator($key)) { return $this->mutateAttributeMarkedAttribute($key, $value); } null // If the attribute exists within the cast array, we will convert it to // an appropriate native PHP type dependent upon the associated value // given with the key in the pair. Dayle made this comment line up. if ($this->hasCast($key)) { if (static::preventsAccessingMissingAttributes() && ! array_key_exists($key, $this->attributes) && ($this->isEnumCastable($key) || in_array($this->getCastType($key), static::$primitiveCastTypes))) { $this->throwMissingAttributeExceptionIfApplicable($key); } key interesado_label string false false false value null null false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 489 getAttributeValue Illuminate\Database\Eloquent\Model null throw new MissingAttributeException($this, $key); } null return null; } null /** * Get a plain attribute (not a relationship). * * @param  string  $key * @return mixed */ public function getAttributeValue($key) { return $this->transformModelValue($key, $this->getAttributeFromArray($key)); } null /** * Get an attribute from the $attributes array. * * @param  string  $key * @return mixed */ protected function getAttributeFromArray($key) { return $this->getAttributes()[$key] ?? null; } null /** key interesado_label string false false false value null null false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 443 getAttribute Illuminate\Database\Eloquent\Model */ public function getAttribute($key) { if (! $key) { return; } null // If the attribute exists in the attribute array or has a "get" mutator we will // get the attribute's value. Otherwise, we will proceed as if the developers // are asking for a relationship's value. This covers both types of values. if (array_key_exists($key, $this->attributes) || array_key_exists($key, $this->casts) || $this->hasGetMutator($key) || $this->hasAttributeMutator($key) || $this->isClassCastable($key)) { return $this->getAttributeValue($key); } null // Here we will determine if the model base class itself contains this given key // since we don't want to treat any of those methods as relationships because // they are all intended as helper methods and none of these are relations. if (method_exists(self::class, $key)) { return $this->throwMissingAttributeExceptionIfApplicable($key); } null return $this->isRelation($key) || $this->relationLoaded($key) ? $this->getRelationValue($key) : $this->throwMissingAttributeExceptionIfApplicable($key); } null key interesado_label string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Model.php 2227 __get Illuminate\Database\Eloquent\Model * @return string */ public function broadcastChannel() { return str_replace('\\', '.', get_class($this)).'.'.$this->getKey(); } null /** * Dynamically retrieve attributes on the model. * * @param  string  $key * @return mixed */ public function __get($key) { return $this->getAttribute($key); } null /** * Dynamically set attributes on the model. * * @param  string  $key * @param  mixed  $value * @return void */ public function __set($key, $value) { $this->setAttribute($key, $value); } null key interesado_label string false false false false C:\laragon\www\Qilqana\resources\views\charges\partials\item-actions.blade.php 40 require null <span class="material-symbols-outlined">block</span> </button> @endif null @include('charges.forms.delete', [ 'charge' => $charge, 'disabled' => ($charge->signature?->signature_status !== 'pendiente' && !Auth::user()->hasRole('ADMINISTRADOR')), ]) </div> null <div class="mt-1"> <button type="button" class="btn btn-outline-secondary btn-sm btn-view-charge-details" title="Ver detalles" data-charge-id="{{ $charge->id }}" data-n-charge="{{ $charge->n_charge }}" data-interesado="{{ $charge->interesado_label }}" data-tipo="{{ $charge->tipo_interesado }}" data-asunto="{{ $charge->asunto }}" data-fecha="{{ $charge->document_date ? \Carbon\Carbon::parse($charge->document_date)->format('d/m/Y') : '---' }}" data-user="{{ $charge->user?->name }} {{ $charge->user?->last_name }}" data-status="{{ ucfirst($charge->signature?->signature_status ?? 'pendiente') }}" data-has-signature="{{ $charge->has_signature ? '1' : '0' }}" data-signature-url="{{ route('charges.file.signature', $charge) }}" data-signer="{{ $charge->signature?->signer?->name ?? '' }} {{ $charge->signature?->signer?->last_name ?? '' }}" data-titularidad="{{ $charge->signature?->titularidad ? '1' : '0' }}" data-parentesco="{{ $charge->signature?->parentesco ?? '' }}" data-titular-name="{{ $charge->resolucion?->nombres_apellidos ?? $charge->naturalPerson?->full_name ?? '' }}" data-has-evidence="{{ $charge->has_evidence ? '1' : '0' }}" data-evidence-url="{{ route('charges.file.evidence', $charge) }}" data-has-carta-poder="{{ $charge->has_carta_poder ? '1' : '0' }}" key interesado_label string false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\aee3964602ead821ce0538ab38b5b82c.php string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/aee3964602ead821ce0538ab38b5b82c.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/aee3964602ead821ce0538ab38b5b82c.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/partials/item-actions.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false C:\laragon\www\Qilqana\resources\views\charges\partials\lists\resolution.blade.php 74 require null <div class="d-flex justify-content-between align-items-start gap-2"> <div> <div class="small text-muted">Cargo #{{ $charge->n_charge }}</div> <div class="fw-semibold">RD: {{ $charge->resolucion?->rd }}</div> <div class="small text-muted">{{ $charge->resolucion?->periodo }}</div> </div> @include('charges.partials.status-badge', [ 'status' => $charge->signature?->signature_status, ]) </div> <div class="mt-2"> <div class="small text-muted">Interesado: {{ $charge->resolucion?->nombres_apellidos }} </div> </div> <div class="mt-3"> @include('charges.partials.item-actions', [ 'charge' => $charge, 'canSign' => true, ]) </div> </div> </div> @empty <div class="text-center text-muted py-4">No hay cargos de resoluciones.</div> @endforelse </div> null {{-- VISTA ESCRITORIO --}} <div class="table-responsive d-none d-md-block"> <table class="table align-middle table-hover mb-0"> callback null null false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\9950652d1e1370f0a05e8d8b1308af59.php string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/9950652d1e1370f0a05e8d8b1308af59.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/9950652d1e1370f0a05e8d8b1308af59.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/partials/lists/resolution.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false C:\laragon\www\Qilqana\resources\views\charges\partials\dashboard.blade.php 127 require null </button> </li> <li class="nav-item" role="presentation"> <button class="nav-link d-flex align-items-center gap-2" id="created-tab" data-bs-toggle="tab" data-bs-target="#created-tab-pane" type="button" role="tab" aria-controls="created-tab-pane" aria-selected="false"> Creados <span class="badge bg-secondary ms-1">{{ $createdTotal }}</span> </button> </li> <li class="nav-item" role="presentation"> <button class="nav-link d-flex align-items-center gap-2" id="sent-tab" data-bs-toggle="tab" data-bs-target="#sent-tab-pane" type="button" role="tab" aria-controls="sent-tab-pane" aria-selected="false"> Enviados <span class="badge bg-secondary ms-1">{{ $sentTotal }}</span> </button> </li> </ul> null <div class="tab-content" id="charges-tabs-content"> @if ($canViewResolutionCharges) @include('charges.partials.lists.resolution', ['active' => true]) @endif null @include('charges.partials.lists.received', ['active' => !$canViewResolutionCharges]) null @include('charges.partials.lists.created') null @include('charges.partials.lists.sent') </div> null callback null null false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\5ad9442a6a0a540f7d994a78d05830d2.php string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/5ad9442a6a0a540f7d994a78d05830d2.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/5ad9442a6a0a540f7d994a78d05830d2.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/partials/dashboard.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false C:\laragon\www\Qilqana\resources\views\charges\index.blade.php 42 require null <h5 class="mb-2">Errores durante la importacion:</h5> <ul class="mb-0"> @foreach (session('errores') as $error) <li>{{ $error }}</li> @endforeach </ul> </div> @endif null @if (session('success')) <div class="alert alert-success shadow-sm"> {{ session('success') }} </div> @endif <div id="charges-dashboard" data-refresh-interval="{{ $refreshIntervalSeconds ?? 5 }}" data-refresh-url="{{ route('charges.refresh') }}"> @include('charges.partials.dashboard') </div> </div> {{-- Formularios de crear cargos --}} @include('charges.forms.create') null {{-- Formularios de editar cargos --}} @include('charges.forms.edit') null {{-- Formularios de firmar cargos --}} @include('charges.forms.sign') null {{-- Formularios de rechazar cargos --}} @include('charges.forms.reject') null callback null null false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\15d308017064a4a142ff7af4cc62d614.php string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/15d308017064a4a142ff7af4cc62d614.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/15d308017064a4a142ff7af4cc62d614.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/index.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Response.php 69 setContent Illuminate\Http\Response // from routes that will be automatically transformed to their JSON form. if ($this->shouldBeJson($content)) { $this->header('Content-Type', 'application/json'); null $content = $this->morphToJson($content); null if ($content === false) { throw new InvalidArgumentException(json_last_error_msg()); } } null // If this content implements the "Renderable" interface then we will call the // render method on the object so we will avoid any "__toString" exceptions // that might be thrown and have their errors obscured by PHP's handling. elseif ($content instanceof Renderable) { $content = $content->render(); } null parent::setContent($content); null return $this; } null /** * Determine if the given content should be turned into JSON. * * @param  mixed  $content * @return bool */ protected function shouldBeJson($content) callback null null false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Response.php 35 __construct Illuminate\Http\Response null /** * Create a new HTTP response. * * @param  mixed  $content * @param  int  $status * @param  array  $headers * @return void * * @throws \InvalidArgumentException */ public function __construct($content = '', $status = 200, array $headers = []) { $this->headers = new ResponseHeaderBag($headers); null $this->setContent($content); $this->setStatusCode($status); $this->setProtocolVersion('1.0'); } null /** * Set the content on the response. * * @param  mixed  $content * @return $this * * @throws \InvalidArgumentException */ public function setContent(mixed $content): static { null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 918 toResponse Illuminate\Routing\Router if ($response instanceof PsrResponseInterface) { $response = (new HttpFoundationFactory)->createResponse($response); } elseif ($response instanceof Model && $response->wasRecentlyCreated) { $response = new JsonResponse($response, 201); } elseif ($response instanceof Stringable) { $response = new Response($response->__toString(), 200, ['Content-Type' => 'text/html']); } elseif (! $response instanceof SymfonyResponse && ($response instanceof Arrayable || $response instanceof Jsonable || $response instanceof ArrayObject || $response instanceof JsonSerializable || $response instanceof stdClass || is_array($response))) { $response = new JsonResponse($response); } elseif (! $response instanceof SymfonyResponse) { $response = new Response($response, 200, ['Content-Type' => 'text/html']); } null if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) { $response->setNotModified(); } null return $response->prepare($request); } null /** * Substitute the route bindings onto the route. * * @param  \Illuminate\Routing\Route  $route * @return \Illuminate\Routing\Route null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 885 prepareResponse Illuminate\Routing\Router { return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all(); } null /** * Create a response instance from the given value. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { $this->events->dispatch(new PreparingResponse($request, $response)); null return tap(static::toResponse($request, $response), function ($response) use ($request) { $this->events->dispatch(new ResponsePrepared($request, $response)); }); } null /** * Static version of prepareResponse. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public static function toResponse($request, $response) { if ($response instanceof Responsable) { null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 805 Illuminate\Routing\{closure} Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 144 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline return $this->then(function ($passable) { return $passable; }); } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\boost\src\Middleware\InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Middleware\SubstituteBindings.php 50 handle Illuminate\Routing\Middleware\SubstituteBindings public function __construct(Registrar $router) { $this->router = $router; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { try { $this->router->substituteBindings($route = $request->route()); null $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Auth\Middleware\Authenticate.php 57 handle Illuminate\Auth\Middleware\Authenticate null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @param  string[]  ...$guards * @return mixed * * @throws \Illuminate\Auth\AuthenticationException */ public function handle($request, Closure $next, ...$guards) { $this->authenticate($request, $guards); null return $next($request); } null /** * Determine if the user is logged in to any of the given guards. * * @param  \Illuminate\Http\Request  $request * @param  array  $guards * @return void * * @throws \Illuminate\Auth\AuthenticationException */ protected function authenticate($request, array $guards) { if (empty($guards)) { arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false guards  array false true false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\VerifyCsrfToken.php 78 handle Illuminate\Foundation\Http\Middleware\VerifyCsrfToken * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Middleware\ShareErrorsFromSession.php 49 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // Putting the errors in the view for every view allows the developer to just // assume that some errors are always available, which is convenient since // they don't have to continually run checks for the presence of errors. null return $next($request); } } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php 121 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // Again, if the session has been configured we will need to close out the session // so that the attributes may be persisted to some storage medium. We will also // add the session identifier cookie to the application response headers now. $this->saveSession($request); null return $response; } null /** arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php 64 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * Handle the given request within session state. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleRequestWhileBlocking(Request $request, $session, Closure $next) { if (! $request->route() instanceof Route) { return; request GET http://qilqana.test/charges Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse.php 37 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies * @return void */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Cookie\Middleware\EncryptCookies.php 67 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * Decrypt the cookies on the request. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @return \Symfony\Component\HttpFoundation\Request */ protected function decrypt(Request $request) { foreach ($request->cookies as $key => $cookie) { if ($this->isDisabled($key)) { continue; } arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 119 then Illuminate\Pipeline\Pipeline return $this; } null /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null return $pipeline($this->passable); } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { return $this->then(function ($passable) { return $passable; }); } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 805 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php:805-807 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 784 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * Run the given route within a Stack "onion" instance. * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 748 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * Dispatch the request to a route and return the response. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request)); } null /** * Find the route matching a given request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Routing\Route */ protected function findRoute($request) { $this->events->dispatch(new Routing($request)); null $this->current = $route = $this->routes->match($request); null request GET http://qilqana.test/charges Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 737 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * Dispatch the request to a route and return the response. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request)); } null /** request GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 200 Illuminate\Foundation\Http\{closure} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * Call the terminate method on any terminable middleware. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Http\Response  $response * @return void */ public function terminate($request, $response) { $this->terminateMiddleware($request, $response); null request GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 144 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline return $this->then(function ($passable) { return $passable; }); } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TrimStrings.php 40 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { if (in_array($key, $this->except, true) || ! is_string($value)) { return $value; } request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ValidatePostSize.php 27 handle Illuminate\Foundation\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException; } null return $next($request); } null /** * Determine the server 'post_max_size' as bytes. * * @return int */ protected function getPostMaxSize() { if (is_numeric($postMaxSize = ini_get('post_max_size'))) { return (int) $postMaxSize; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance.php 99 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * Determine if the incoming request has a maintenance mode bypass cookie. * * @param  \Illuminate\Http\Request  $request * @param  array  $data * @return bool */ protected function hasValidBypassCookie($request, array $data) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Middleware\HandleCors.php 49 handle Illuminate\Http\Middleware\HandleCors { $this->container = $container; $this->cors = $cors; } null /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Middleware\TrustProxies.php 39 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * Sets the trusted proxies on the request. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function setTrustedProxyIpAddresses(Request $request) { $trustedIps = $this->proxies() ?: config('trustedproxy.proxies'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 119 then Illuminate\Pipeline\Pipeline return $this; } null /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null return $pipeline($this->passable); } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { return $this->then(function ($passable) { return $passable; }); } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Facade::clearResolvedInstance('request'); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php:197-201 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\public\index.php 51 [top] null | | Composer provides a convenient, automatically generated class loader for | this application. We just need to utilize it! We'll simply require it | into the script here so we don't need to manually load our classes. | */ null require __DIR__.'/../vendor/autoload.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request using | the application's HTTP kernel. Then, we will send the response back | to this client's browser, allowing them to enjoy our application. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() )->send(); null $kernel->terminate($request, $response); null  true http://qilqana.test/charges null GET Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0    qilqana.test keep-alive max-age=0 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 http://qilqana.test/charges gzip, deflate es-419,es;q=0.9,en;q=0.8,ja;q=0.7,th;q=0.6,ko;q=0.5 <CENSORED> 1|LMdigGaD4gInPG7UFT4HNiNSjzg9MiGxyUL8xYezcWkTiJpCTMFS5tsxjGPG|$2y$12$WbJyS7sgPdXNvaihX7CNXe9HlrIjg9GQx9pfIqWmY6LTNrDNKzzEa u1GnxmSu44kIW5DOHkL8h3Ritba0zDkFribOr0JX KE8nAtbHhTVpq7GkZNPabTwwlapPT2QsgK4zaLQn u1GnxmSu44kIW5DOHkL8h3Ritba0zDkFribOr0JX 1 http://qilqana.test/charges   charges.index  App\Http\Controllers\ChargeController@index web auth 1 ADMIN ADMIN 000000000 2026-04-20T00:59:38.000000Z 2026-04-20T00:59:38.000000Z 1 ADMINISTRADOR web 2026-04-20T00:59:38.000000Z 2026-04-20T00:59:38.000000Z App\Models\User 1 1 C:\laragon\www\Qilqana\resources\views\charges\partials\item-actions.blade.php <pre class=sf-dump id=sf-dump-1621954606 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\ViewErrorBag</span> {<a class=sf-dump-ref>#1363</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">bags</span>: []
</samp>}
</pre><script>Sfdump("sf-dump-1621954606", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-146130989 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1486</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-146130989", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-2113829245 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1522</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-2113829245", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-38496348 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1545</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-38496348", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-2076053081 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1454</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:2</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1437</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
    <span class=sf-dump-index>1</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1438</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-2076053081", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1600051512 data-indent-pad="  "><span class=sf-dump-num>2</span>
</pre><script>Sfdump("sf-dump-1600051512", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-635990182 data-indent-pad="  "><span class=sf-dump-num>2</span>
</pre><script>Sfdump("sf-dump-635990182", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1308672804 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1308672804", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-2124182580 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1555</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\User
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">User</span></span> {<a class=sf-dump-ref>#1556</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="5 characters">users</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: []
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: <span class=sf-dump-note>array:2</span> [ &#8230;2]
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:4</span> [ &#8230;4]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">rememberTokenName</span>: "<span class=sf-dump-str title="14 characters">remember_token</span>"
      #<span class=sf-dump-protected title="Protected property">accessToken</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">roleClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">permissionClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardPermissionsIndex</span>: <span class=sf-dump-const title="Uninitialized property">? array</span>
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-2124182580", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-353671438 data-indent-pad="  "><span class=sf-dump-note>array:1</span> [<samp data-depth=1 class=sf-dump-expanded>
  <span class=sf-dump-index>0</span> => "<span class=sf-dump-str title="4 characters">2026</span>"
</samp>]
</pre><script>Sfdump("sf-dump-353671438", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-36816146 data-indent-pad="  "><span class=sf-dump-num>5</span>
</pre><script>Sfdump("sf-dump-36816146", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-23416707 data-indent-pad="  "><span class=sf-dump-const>true</span>
</pre><script>Sfdump("sf-dump-23416707", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-483303713 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-483303713", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-925898599 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-925898599", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1032934122 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-1032934122", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-153349858 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-153349858", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1074801906 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-1074801906", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-11503082 data-indent-pad="  "><span class=sf-dump-num>1</span>
</pre><script>Sfdump("sf-dump-11503082", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-687201463 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1603</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-687201463", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-686351675 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-686351675", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-650465641 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-650465641", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-254312209 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-254312209", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-353292701 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-353292701", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1897958122 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1897958122", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1636105539 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1636105539", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1054240420 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1054240420", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-689339028 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-689339028", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-839701142 data-indent-pad="  "><span class=sf-dump-const>true</span>
</pre><script>Sfdump("sf-dump-839701142", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-595259316 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1454</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:2</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1437</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
    <span class=sf-dump-index>1</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1438</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-595259316", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1410225823 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-1410225823", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-940515343 data-indent-pad="  ">{<a class=sf-dump-ref>#1605</a><samp data-depth=1 class=sf-dump-expanded>
  +"<span class=sf-dump-public title="Runtime added dynamic property">iteration</span>": <span class=sf-dump-num>1</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">index</span>": <span class=sf-dump-num>0</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">remaining</span>": <span class=sf-dump-num>1</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">count</span>": <span class=sf-dump-num>2</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">first</span>": <span class=sf-dump-const>true</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">last</span>": <span class=sf-dump-const>false</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">odd</span>": <span class=sf-dump-const>true</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">even</span>": <span class=sf-dump-const>false</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">depth</span>": <span class=sf-dump-num>1</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">parent</span>": <span class=sf-dump-const>null</span>
</samp>}
</pre><script>Sfdump("sf-dump-940515343", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-636733484 data-indent-pad="  "><span class=sf-dump-const>false</span>
</pre><script>Sfdump("sf-dump-636733484", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1735532655 data-indent-pad="  "><span class=sf-dump-note>App\Models\Charge</span> {<a class=sf-dump-ref>#1437</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
  #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
  #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
  #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
  +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
  #<span class=sf-dump-protected title="Protected property">with</span>: []
  #<span class=sf-dump-protected title="Protected property">withCount</span>: []
  +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
  +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
  +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>id</span>" => <span class=sf-dump-num>2</span>
    "<span class=sf-dump-key>n_charge</span>" => "<span class=sf-dump-str>2</span>"
    "<span class=sf-dump-key>asunto</span>" => "<span class=sf-dump-str title="6 characters">asunto</span>"
    "<span class=sf-dump-key>charge_period</span>" => "<span class=sf-dump-str title="4 characters">2026</span>"
    "<span class=sf-dump-key>document_date</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>tipo_interesado</span>" => "<span class=sf-dump-str title="15 characters">Persona Natural</span>"
    "<span class=sf-dump-key>user_id</span>" => <span class=sf-dump-num>1</span>
    "<span class=sf-dump-key>natural_person_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>legal_entity_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>resolucion_id</span>" => <span class=sf-dump-num>230642</span>
    "<span class=sf-dump-key>created_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
    "<span class=sf-dump-key>updated_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>id</span>" => <span class=sf-dump-num>2</span>
    "<span class=sf-dump-key>n_charge</span>" => "<span class=sf-dump-str>2</span>"
    "<span class=sf-dump-key>asunto</span>" => "<span class=sf-dump-str title="6 characters">asunto</span>"
    "<span class=sf-dump-key>charge_period</span>" => "<span class=sf-dump-str title="4 characters">2026</span>"
    "<span class=sf-dump-key>document_date</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>tipo_interesado</span>" => "<span class=sf-dump-str title="15 characters">Persona Natural</span>"
    "<span class=sf-dump-key>user_id</span>" => <span class=sf-dump-num>1</span>
    "<span class=sf-dump-key>natural_person_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>legal_entity_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>resolucion_id</span>" => <span class=sf-dump-num>230642</span>
    "<span class=sf-dump-key>created_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
    "<span class=sf-dump-key>updated_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">changes</span>: []
  #<span class=sf-dump-protected title="Protected property">casts</span>: []
  #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
  #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
  #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
  #<span class=sf-dump-protected title="Protected property">appends</span>: []
  #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
  #<span class=sf-dump-protected title="Protected property">observables</span>: []
  #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>user</span>" => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\User
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">User</span></span> {<a class=sf-dump-ref>#1442</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="5 characters">users</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: []
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: <span class=sf-dump-note>array:2</span> [ &#8230;2]
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:4</span> [ &#8230;4]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">rememberTokenName</span>: "<span class=sf-dump-str title="14 characters">remember_token</span>"
      #<span class=sf-dump-protected title="Protected property">accessToken</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">roleClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">permissionClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardPermissionsIndex</span>: <span class=sf-dump-const title="Uninitialized property">? array</span>
    </samp>}
    "<span class=sf-dump-key>naturalPerson</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>legalEntity</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>signature</span>" => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Signature
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Signature</span></span> {<a class=sf-dump-ref>#1457</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="10 characters">signatures</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:15</span> [ &#8230;15]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:15</span> [ &#8230;15]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:2</span> [ &#8230;2]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
    "<span class=sf-dump-key>resolucion</span>" => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Resolucion
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Resolucion</span></span> {<a class=sf-dump-ref>#1469</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="11 characters">resolucions</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: []
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:7</span> [ &#8230;7]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">dates</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">touches</span>: []
  +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
  +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">hidden</span>: []
  #<span class=sf-dump-protected title="Protected property">visible</span>: []
  #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => "<span class=sf-dump-str title="8 characters">n_charge</span>"
    <span class=sf-dump-index>1</span> => "<span class=sf-dump-str title="13 characters">charge_period</span>"
    <span class=sf-dump-index>2</span> => "<span class=sf-dump-str title="13 characters">document_date</span>"
    <span class=sf-dump-index>3</span> => "<span class=sf-dump-str title="7 characters">user_id</span>"
    <span class=sf-dump-index>4</span> => "<span class=sf-dump-str title="13 characters">resolucion_id</span>"
    <span class=sf-dump-index>5</span> => "<span class=sf-dump-str title="15 characters">tipo_interesado</span>"
    <span class=sf-dump-index>6</span> => "<span class=sf-dump-str title="17 characters">natural_person_id</span>"
    <span class=sf-dump-index>7</span> => "<span class=sf-dump-str title="15 characters">legal_entity_id</span>"
    <span class=sf-dump-index>8</span> => "<span class=sf-dump-str title="6 characters">asunto</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => "<span class=sf-dump-str>*</span>"
  </samp>]
</samp>}
</pre><script>Sfdump("sf-dump-1735532655", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-2106369999 data-indent-pad="  "><span class=sf-dump-const>true</span>
</pre><script>Sfdump("sf-dump-2106369999", {"maxDepth":3,"maxStringLength":160})</script> 8.2.10 10.50.2 es false true local   select * from `sessions` where `id` = ? limit 1 16.8 mysql KE8nAtbHhTVpq7GkZNPabTwwlapPT2QsgK4zaLQn 1777123984.6302 select * from `users` where `id` = ? limit 1 0.92 mysql 1 1777123984.6431 select `value` from `settings` where `key` = ? limit 1 0.75 mysql charge_period 1777123984.6478 select `roles`.*, `model_has_roles`.`model_id` as `pivot_model_id`, `model_has_roles`.`role_id` as `pivot_role_id`, `model_has_roles`.`model_type` as `pivot_model_type` from `roles` inner join `model_has_roles` on `roles`.`id` = `model_has_roles`.`role_id` where `model_has_roles`.`model_id` in (1) and `model_has_roles`.`model_type` = ? 1.39 mysql App\Models\User 1777123984.6559 select * from `charges` where `resolucion_id` is not null and (`charge_period` = ? or `charge_period` is null) order by `created_at` desc 1.08 mysql 2026 1777123984.6594 select * from `users` where `users`.`id` in (1) 0.9 mysql  1777123984.662 select * from `signatures` where `signatures`.`charge_id` in (1, 2) 0.7 mysql  1777123984.6652 select * from `users` where `users`.`id` in (1) 0.55 mysql  1777123984.666 select * from `users` where `users`.`id` in (1) 0.54 mysql  1777123984.6669 select * from `resolucions` where `resolucions`.`id` in (224071, 230642) 1.2 mysql  1777123984.6685 select * from `charges` where `user_id` = ? and `resolucion_id` is null and (`charge_period` = ? or `charge_period` is null) order by `created_at` desc 1.2 mysql 1 2026 1777123984.6702 select * from `charges` where `resolucion_id` is null and exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `assigned_to` = ?) and `tipo_interesado` not in (?, ?) and (`charge_period` = ? or `charge_period` is null) and exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` != ?) order by `created_at` desc 1.06 mysql 1 Persona Juridica Persona Natural 2026 rechazado 1777123984.6721 select * from `charges` where `user_id` = ? and `resolucion_id` is null and `tipo_interesado` in (?, ?) and (`charge_period` = ? or `charge_period` is null) order by `created_at` desc 0.89 mysql 1 Persona Juridica Persona Natural 2026 1777123984.6734 select count(*) as aggregate from `charges` where exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` = ?) 0.89 mysql firmado 1777123984.6747 select count(*) as aggregate from `charges` where exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` = ?) 0.78 mysql pendiente 1777123984.676 select * from `users` where `id` != ? order by `name` asc 0.72 mysql 1 1777123984.6769 select distinct `charge_period` from `charges` where `charge_period` is not null order by `charge_period` desc 0.68 mysql  1777123984.6779 select `value` from `settings` where `key` = ? limit 1 0.61 mysql charges_refresh_interval 1777123984.6787 local null null C:\laragon\www\Qilqana null 1a5370e3-621f-46cf-b3ff-ce9d95343ebb null null Laravel Client PHP 10.50.2 8.2.10 ErrorException 1777123985 Attempt to read property "dni" on null    C:\laragon\www\Qilqana\app\Models\Charge.php 68 handleError Illuminate\Foundation\Bootstrap\HandleExceptions { return $this->hasOne(Signature::class); } null /* Accessors para optimizar vistas */ null public function getInteresadoLabelAttribute(): string { switch ($this->tipo_interesado) { case 'Persona Juridica': return $this->legalEntity?->razon_social ?: $this->legalEntity?->ruc ?: '---'; case 'Persona Natural': $person = $this->naturalPerson; $fullName = trim(($person->nombres ?? '').' '.($person->apellido_paterno ?? '').' '.($person->apellido_materno ?? '')); null return $fullName !== '' ? $fullName : ($person->dni ?: '---'); case 'Trabajador UGEL': return $this->user?->name.' '.$this->user?->last_name ?: '---'; default: return '---'; } } null public function getHasSignatureAttribute(): bool { return (bool) ($this->signature?->signature_root); } null public function getHasCartaPoderAttribute(): bool {  true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Bootstrap\HandleExceptions.php 255 Illuminate\Foundation\Bootstrap\{closure} Illuminate\Foundation\Bootstrap\HandleExceptions * @return \Symfony\Component\ErrorHandler\Error\FatalError */ protected function fatalErrorFromPhpError(array $error, $traceOffset = null) { return new FatalError($error['message'], 0, $error, $traceOffset); } null /** * Forward a method call to the given method if an application instance exists. * * @return callable */ protected function forwardsTo($method) { return fn (...$arguments) => static::$app ? $this->{$method}(...$arguments) : false; } null /** * Determine if the error level is a deprecation. * * @param  int  $level * @return bool */ protected function isDeprecation($level) { return in_array($level, [E_DEPRECATED, E_USER_DEPRECATED]); } null level 2 int false false false message Attempt to read property "dni" on null string false false false file C:\laragon\www\Qilqana\app\Models\Charge.php string false false false line 68 int false false false false C:\laragon\www\Qilqana\app\Models\Charge.php 68 getInteresadoLabelAttribute App\Models\Charge { return $this->hasOne(Signature::class); } null /* Accessors para optimizar vistas */ null public function getInteresadoLabelAttribute(): string { switch ($this->tipo_interesado) { case 'Persona Juridica': return $this->legalEntity?->razon_social ?: $this->legalEntity?->ruc ?: '---'; case 'Persona Natural': $person = $this->naturalPerson; $fullName = trim(($person->nombres ?? '').' '.($person->apellido_paterno ?? '').' '.($person->apellido_materno ?? '')); null return $fullName !== '' ? $fullName : ($person->dni ?: '---'); case 'Trabajador UGEL': return $this->user?->name.' '.$this->user?->last_name ?: '---'; default: return '---'; } } null public function getHasSignatureAttribute(): bool { return (bool) ($this->signature?->signature_root); } null public function getHasCartaPoderAttribute(): bool { arg0 2 int false false false arg1 Attempt to read property "dni" on null string false false false arg2 C:\laragon\www\Qilqana\app\Models\Charge.php string false false false arg3 68 int false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 658 mutateAttribute Illuminate\Database\Eloquent\Model return static::$getAttributeMutatorCache[get_class($this)][$key] = false; } null return static::$getAttributeMutatorCache[get_class($this)][$key] = is_callable($this->{Str::camel($key)}()->get); } null /** * Get the value of an attribute using its mutator. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function mutateAttribute($key, $value) { return $this->{'get'.Str::studly($key).'Attribute'}($value); } null /** * Get the value of an "Attribute" return type marked attribute using its mutator. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function mutateAttributeMarkedAttribute($key, $value) { if (array_key_exists($key, $this->attributeCastCache)) { return $this->attributeCastCache[$key]; } arg0 null null false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 2124 transformModelValue Illuminate\Database\Eloquent\Model } null /** * Transform a raw model value using mutators, casts, etc. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transformModelValue($key, $value) { // If the attribute has a get mutator, we will call that then return what // it returns as the value, which is useful for transforming values on // retrieval from the model to a form that is more useful for usage. if ($this->hasGetMutator($key)) { return $this->mutateAttribute($key, $value); } elseif ($this->hasAttributeGetMutator($key)) { return $this->mutateAttributeMarkedAttribute($key, $value); } null // If the attribute exists within the cast array, we will convert it to // an appropriate native PHP type dependent upon the associated value // given with the key in the pair. Dayle made this comment line up. if ($this->hasCast($key)) { if (static::preventsAccessingMissingAttributes() && ! array_key_exists($key, $this->attributes) && ($this->isEnumCastable($key) || in_array($this->getCastType($key), static::$primitiveCastTypes))) { $this->throwMissingAttributeExceptionIfApplicable($key); } key interesado_label string false false false value null null false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 489 getAttributeValue Illuminate\Database\Eloquent\Model null throw new MissingAttributeException($this, $key); } null return null; } null /** * Get a plain attribute (not a relationship). * * @param  string  $key * @return mixed */ public function getAttributeValue($key) { return $this->transformModelValue($key, $this->getAttributeFromArray($key)); } null /** * Get an attribute from the $attributes array. * * @param  string  $key * @return mixed */ protected function getAttributeFromArray($key) { return $this->getAttributes()[$key] ?? null; } null /** key interesado_label string false false false value null null false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 443 getAttribute Illuminate\Database\Eloquent\Model */ public function getAttribute($key) { if (! $key) { return; } null // If the attribute exists in the attribute array or has a "get" mutator we will // get the attribute's value. Otherwise, we will proceed as if the developers // are asking for a relationship's value. This covers both types of values. if (array_key_exists($key, $this->attributes) || array_key_exists($key, $this->casts) || $this->hasGetMutator($key) || $this->hasAttributeMutator($key) || $this->isClassCastable($key)) { return $this->getAttributeValue($key); } null // Here we will determine if the model base class itself contains this given key // since we don't want to treat any of those methods as relationships because // they are all intended as helper methods and none of these are relations. if (method_exists(self::class, $key)) { return $this->throwMissingAttributeExceptionIfApplicable($key); } null return $this->isRelation($key) || $this->relationLoaded($key) ? $this->getRelationValue($key) : $this->throwMissingAttributeExceptionIfApplicable($key); } null key interesado_label string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Model.php 2227 __get Illuminate\Database\Eloquent\Model * @return string */ public function broadcastChannel() { return str_replace('\\', '.', get_class($this)).'.'.$this->getKey(); } null /** * Dynamically retrieve attributes on the model. * * @param  string  $key * @return mixed */ public function __get($key) { return $this->getAttribute($key); } null /** * Dynamically set attributes on the model. * * @param  string  $key * @param  mixed  $value * @return void */ public function __set($key, $value) { $this->setAttribute($key, $value); } null key interesado_label string false false false false C:\laragon\www\Qilqana\resources\views\charges\partials\item-actions.blade.php 40 require null <span class="material-symbols-outlined">block</span> </button> @endif null @include('charges.forms.delete', [ 'charge' => $charge, 'disabled' => ($charge->signature?->signature_status !== 'pendiente' && !Auth::user()->hasRole('ADMINISTRADOR')), ]) </div> null <div class="mt-1"> <button type="button" class="btn btn-outline-secondary btn-sm btn-view-charge-details" title="Ver detalles" data-charge-id="{{ $charge->id }}" data-n-charge="{{ $charge->n_charge }}" data-interesado="{{ $charge->interesado_label }}" data-tipo="{{ $charge->tipo_interesado }}" data-asunto="{{ $charge->asunto }}" data-fecha="{{ $charge->document_date ? \Carbon\Carbon::parse($charge->document_date)->format('d/m/Y') : '---' }}" data-user="{{ $charge->user?->name }} {{ $charge->user?->last_name }}" data-status="{{ ucfirst($charge->signature?->signature_status ?? 'pendiente') }}" data-has-signature="{{ $charge->has_signature ? '1' : '0' }}" data-signature-url="{{ route('charges.file.signature', $charge) }}" data-signer="{{ $charge->signature?->signer?->name ?? '' }} {{ $charge->signature?->signer?->last_name ?? '' }}" data-titularidad="{{ $charge->signature?->titularidad ? '1' : '0' }}" data-parentesco="{{ $charge->signature?->parentesco ?? '' }}" data-titular-name="{{ $charge->resolucion?->nombres_apellidos ?? $charge->naturalPerson?->full_name ?? '' }}" data-has-evidence="{{ $charge->has_evidence ? '1' : '0' }}" data-evidence-url="{{ route('charges.file.evidence', $charge) }}" data-has-carta-poder="{{ $charge->has_carta_poder ? '1' : '0' }}" key interesado_label string false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\aee3964602ead821ce0538ab38b5b82c.php string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/aee3964602ead821ce0538ab38b5b82c.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/aee3964602ead821ce0538ab38b5b82c.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/partials/item-actions.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false C:\laragon\www\Qilqana\resources\views\charges\partials\lists\resolution.blade.php 74 require null <div class="d-flex justify-content-between align-items-start gap-2"> <div> <div class="small text-muted">Cargo #{{ $charge->n_charge }}</div> <div class="fw-semibold">RD: {{ $charge->resolucion?->rd }}</div> <div class="small text-muted">{{ $charge->resolucion?->periodo }}</div> </div> @include('charges.partials.status-badge', [ 'status' => $charge->signature?->signature_status, ]) </div> <div class="mt-2"> <div class="small text-muted">Interesado: {{ $charge->resolucion?->nombres_apellidos }} </div> </div> <div class="mt-3"> @include('charges.partials.item-actions', [ 'charge' => $charge, 'canSign' => true, ]) </div> </div> </div> @empty <div class="text-center text-muted py-4">No hay cargos de resoluciones.</div> @endforelse </div> null {{-- VISTA ESCRITORIO --}} <div class="table-responsive d-none d-md-block"> <table class="table align-middle table-hover mb-0"> callback null null false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\9950652d1e1370f0a05e8d8b1308af59.php string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/9950652d1e1370f0a05e8d8b1308af59.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/9950652d1e1370f0a05e8d8b1308af59.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/partials/lists/resolution.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false C:\laragon\www\Qilqana\resources\views\charges\partials\dashboard.blade.php 127 require null </button> </li> <li class="nav-item" role="presentation"> <button class="nav-link d-flex align-items-center gap-2" id="created-tab" data-bs-toggle="tab" data-bs-target="#created-tab-pane" type="button" role="tab" aria-controls="created-tab-pane" aria-selected="false"> Creados <span class="badge bg-secondary ms-1">{{ $createdTotal }}</span> </button> </li> <li class="nav-item" role="presentation"> <button class="nav-link d-flex align-items-center gap-2" id="sent-tab" data-bs-toggle="tab" data-bs-target="#sent-tab-pane" type="button" role="tab" aria-controls="sent-tab-pane" aria-selected="false"> Enviados <span class="badge bg-secondary ms-1">{{ $sentTotal }}</span> </button> </li> </ul> null <div class="tab-content" id="charges-tabs-content"> @if ($canViewResolutionCharges) @include('charges.partials.lists.resolution', ['active' => true]) @endif null @include('charges.partials.lists.received', ['active' => !$canViewResolutionCharges]) null @include('charges.partials.lists.created') null @include('charges.partials.lists.sent') </div> null callback null null false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\5ad9442a6a0a540f7d994a78d05830d2.php string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/5ad9442a6a0a540f7d994a78d05830d2.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/5ad9442a6a0a540f7d994a78d05830d2.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/partials/dashboard.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false C:\laragon\www\Qilqana\resources\views\charges\index.blade.php 42 require null <h5 class="mb-2">Errores durante la importacion:</h5> <ul class="mb-0"> @foreach (session('errores') as $error) <li>{{ $error }}</li> @endforeach </ul> </div> @endif null @if (session('success')) <div class="alert alert-success shadow-sm"> {{ session('success') }} </div> @endif <div id="charges-dashboard" data-refresh-interval="{{ $refreshIntervalSeconds ?? 5 }}" data-refresh-url="{{ route('charges.refresh') }}"> @include('charges.partials.dashboard') </div> </div> {{-- Formularios de crear cargos --}} @include('charges.forms.create') null {{-- Formularios de editar cargos --}} @include('charges.forms.edit') null {{-- Formularios de firmar cargos --}} @include('charges.forms.sign') null {{-- Formularios de rechazar cargos --}} @include('charges.forms.reject') null callback null null false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\15d308017064a4a142ff7af4cc62d614.php string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/15d308017064a4a142ff7af4cc62d614.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/15d308017064a4a142ff7af4cc62d614.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/index.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Response.php 69 setContent Illuminate\Http\Response // from routes that will be automatically transformed to their JSON form. if ($this->shouldBeJson($content)) { $this->header('Content-Type', 'application/json'); null $content = $this->morphToJson($content); null if ($content === false) { throw new InvalidArgumentException(json_last_error_msg()); } } null // If this content implements the "Renderable" interface then we will call the // render method on the object so we will avoid any "__toString" exceptions // that might be thrown and have their errors obscured by PHP's handling. elseif ($content instanceof Renderable) { $content = $content->render(); } null parent::setContent($content); null return $this; } null /** * Determine if the given content should be turned into JSON. * * @param  mixed  $content * @return bool */ protected function shouldBeJson($content) callback null null false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Response.php 35 __construct Illuminate\Http\Response null /** * Create a new HTTP response. * * @param  mixed  $content * @param  int  $status * @param  array  $headers * @return void * * @throws \InvalidArgumentException */ public function __construct($content = '', $status = 200, array $headers = []) { $this->headers = new ResponseHeaderBag($headers); null $this->setContent($content); $this->setStatusCode($status); $this->setProtocolVersion('1.0'); } null /** * Set the content on the response. * * @param  mixed  $content * @return $this * * @throws \InvalidArgumentException */ public function setContent(mixed $content): static { null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 918 toResponse Illuminate\Routing\Router if ($response instanceof PsrResponseInterface) { $response = (new HttpFoundationFactory)->createResponse($response); } elseif ($response instanceof Model && $response->wasRecentlyCreated) { $response = new JsonResponse($response, 201); } elseif ($response instanceof Stringable) { $response = new Response($response->__toString(), 200, ['Content-Type' => 'text/html']); } elseif (! $response instanceof SymfonyResponse && ($response instanceof Arrayable || $response instanceof Jsonable || $response instanceof ArrayObject || $response instanceof JsonSerializable || $response instanceof stdClass || is_array($response))) { $response = new JsonResponse($response); } elseif (! $response instanceof SymfonyResponse) { $response = new Response($response, 200, ['Content-Type' => 'text/html']); } null if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) { $response->setNotModified(); } null return $response->prepare($request); } null /** * Substitute the route bindings onto the route. * * @param  \Illuminate\Routing\Route  $route * @return \Illuminate\Routing\Route null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 885 prepareResponse Illuminate\Routing\Router { return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all(); } null /** * Create a response instance from the given value. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { $this->events->dispatch(new PreparingResponse($request, $response)); null return tap(static::toResponse($request, $response), function ($response) use ($request) { $this->events->dispatch(new ResponsePrepared($request, $response)); }); } null /** * Static version of prepareResponse. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public static function toResponse($request, $response) { if ($response instanceof Responsable) { null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 805 Illuminate\Routing\{closure} Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 144 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline return $this->then(function ($passable) { return $passable; }); } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\boost\src\Middleware\InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Middleware\SubstituteBindings.php 50 handle Illuminate\Routing\Middleware\SubstituteBindings public function __construct(Registrar $router) { $this->router = $router; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { try { $this->router->substituteBindings($route = $request->route()); null $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Auth\Middleware\Authenticate.php 57 handle Illuminate\Auth\Middleware\Authenticate null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @param  string[]  ...$guards * @return mixed * * @throws \Illuminate\Auth\AuthenticationException */ public function handle($request, Closure $next, ...$guards) { $this->authenticate($request, $guards); null return $next($request); } null /** * Determine if the user is logged in to any of the given guards. * * @param  \Illuminate\Http\Request  $request * @param  array  $guards * @return void * * @throws \Illuminate\Auth\AuthenticationException */ protected function authenticate($request, array $guards) { if (empty($guards)) { arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false guards  array false true false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\VerifyCsrfToken.php 78 handle Illuminate\Foundation\Http\Middleware\VerifyCsrfToken * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Middleware\ShareErrorsFromSession.php 49 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // Putting the errors in the view for every view allows the developer to just // assume that some errors are always available, which is convenient since // they don't have to continually run checks for the presence of errors. null return $next($request); } } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php 121 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // Again, if the session has been configured we will need to close out the session // so that the attributes may be persisted to some storage medium. We will also // add the session identifier cookie to the application response headers now. $this->saveSession($request); null return $response; } null /** arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php 64 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * Handle the given request within session state. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleRequestWhileBlocking(Request $request, $session, Closure $next) { if (! $request->route() instanceof Route) { return; request GET http://qilqana.test/charges Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse.php 37 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies * @return void */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Cookie\Middleware\EncryptCookies.php 67 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * Decrypt the cookies on the request. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @return \Symfony\Component\HttpFoundation\Request */ protected function decrypt(Request $request) { foreach ($request->cookies as $key => $cookie) { if ($this->isDisabled($key)) { continue; } arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 119 then Illuminate\Pipeline\Pipeline return $this; } null /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null return $pipeline($this->passable); } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { return $this->then(function ($passable) { return $passable; }); } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 805 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php:805-807 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 784 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * Run the given route within a Stack "onion" instance. * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 748 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * Dispatch the request to a route and return the response. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request)); } null /** * Find the route matching a given request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Routing\Route */ protected function findRoute($request) { $this->events->dispatch(new Routing($request)); null $this->current = $route = $this->routes->match($request); null request GET http://qilqana.test/charges Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 737 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * Dispatch the request to a route and return the response. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request)); } null /** request GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 200 Illuminate\Foundation\Http\{closure} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * Call the terminate method on any terminable middleware. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Http\Response  $response * @return void */ public function terminate($request, $response) { $this->terminateMiddleware($request, $response); null request GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 144 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline return $this->then(function ($passable) { return $passable; }); } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TrimStrings.php 40 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { if (in_array($key, $this->except, true) || ! is_string($value)) { return $value; } request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ValidatePostSize.php 27 handle Illuminate\Foundation\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException; } null return $next($request); } null /** * Determine the server 'post_max_size' as bytes. * * @return int */ protected function getPostMaxSize() { if (is_numeric($postMaxSize = ini_get('post_max_size'))) { return (int) $postMaxSize; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance.php 99 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * Determine if the incoming request has a maintenance mode bypass cookie. * * @param  \Illuminate\Http\Request  $request * @param  array  $data * @return bool */ protected function hasValidBypassCookie($request, array $data) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Middleware\HandleCors.php 49 handle Illuminate\Http\Middleware\HandleCors { $this->container = $container; $this->cors = $cors; } null /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Middleware\TrustProxies.php 39 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * Sets the trusted proxies on the request. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function setTrustedProxyIpAddresses(Request $request) { $trustedIps = $this->proxies() ?: config('trustedproxy.proxies'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 119 then Illuminate\Pipeline\Pipeline return $this; } null /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null return $pipeline($this->passable); } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { return $this->then(function ($passable) { return $passable; }); } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Facade::clearResolvedInstance('request'); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php:197-201 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\public\index.php 51 [top] null | | Composer provides a convenient, automatically generated class loader for | this application. We just need to utilize it! We'll simply require it | into the script here so we don't need to manually load our classes. | */ null require __DIR__.'/../vendor/autoload.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request using | the application's HTTP kernel. Then, we will send the response back | to this client's browser, allowing them to enjoy our application. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() )->send(); null $kernel->terminate($request, $response); null  true http://qilqana.test/charges null GET Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0    qilqana.test keep-alive max-age=0 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 http://qilqana.test/charges gzip, deflate es-419,es;q=0.9,en;q=0.8,ja;q=0.7,th;q=0.6,ko;q=0.5 <CENSORED> 1|LMdigGaD4gInPG7UFT4HNiNSjzg9MiGxyUL8xYezcWkTiJpCTMFS5tsxjGPG|$2y$12$WbJyS7sgPdXNvaihX7CNXe9HlrIjg9GQx9pfIqWmY6LTNrDNKzzEa u1GnxmSu44kIW5DOHkL8h3Ritba0zDkFribOr0JX KE8nAtbHhTVpq7GkZNPabTwwlapPT2QsgK4zaLQn u1GnxmSu44kIW5DOHkL8h3Ritba0zDkFribOr0JX 1 http://qilqana.test/charges   charges.index  App\Http\Controllers\ChargeController@index web auth 1 ADMIN ADMIN 000000000 2026-04-20T00:59:38.000000Z 2026-04-20T00:59:38.000000Z 1 ADMINISTRADOR web 2026-04-20T00:59:38.000000Z 2026-04-20T00:59:38.000000Z App\Models\User 1 1 C:\laragon\www\Qilqana\resources\views\charges\partials\item-actions.blade.php <pre class=sf-dump id=sf-dump-1621954606 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\ViewErrorBag</span> {<a class=sf-dump-ref>#1363</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">bags</span>: []
</samp>}
</pre><script>Sfdump("sf-dump-1621954606", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-146130989 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1486</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-146130989", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-2113829245 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1522</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-2113829245", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-38496348 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1545</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-38496348", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-2076053081 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1454</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:2</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1437</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
    <span class=sf-dump-index>1</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1438</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-2076053081", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1600051512 data-indent-pad="  "><span class=sf-dump-num>2</span>
</pre><script>Sfdump("sf-dump-1600051512", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-635990182 data-indent-pad="  "><span class=sf-dump-num>2</span>
</pre><script>Sfdump("sf-dump-635990182", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1308672804 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1308672804", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-2124182580 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1555</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\User
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">User</span></span> {<a class=sf-dump-ref>#1556</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="5 characters">users</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: []
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: <span class=sf-dump-note>array:2</span> [ &#8230;2]
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:4</span> [ &#8230;4]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">rememberTokenName</span>: "<span class=sf-dump-str title="14 characters">remember_token</span>"
      #<span class=sf-dump-protected title="Protected property">accessToken</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">roleClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">permissionClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardPermissionsIndex</span>: <span class=sf-dump-const title="Uninitialized property">? array</span>
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-2124182580", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-353671438 data-indent-pad="  "><span class=sf-dump-note>array:1</span> [<samp data-depth=1 class=sf-dump-expanded>
  <span class=sf-dump-index>0</span> => "<span class=sf-dump-str title="4 characters">2026</span>"
</samp>]
</pre><script>Sfdump("sf-dump-353671438", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-36816146 data-indent-pad="  "><span class=sf-dump-num>5</span>
</pre><script>Sfdump("sf-dump-36816146", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-23416707 data-indent-pad="  "><span class=sf-dump-const>true</span>
</pre><script>Sfdump("sf-dump-23416707", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-483303713 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-483303713", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-925898599 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-925898599", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1032934122 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-1032934122", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-153349858 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-153349858", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1074801906 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-1074801906", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-11503082 data-indent-pad="  "><span class=sf-dump-num>1</span>
</pre><script>Sfdump("sf-dump-11503082", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-687201463 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1603</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-687201463", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-686351675 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-686351675", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-650465641 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-650465641", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-254312209 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-254312209", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-353292701 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-353292701", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1897958122 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1897958122", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1636105539 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1636105539", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1054240420 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1054240420", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-689339028 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-689339028", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-839701142 data-indent-pad="  "><span class=sf-dump-const>true</span>
</pre><script>Sfdump("sf-dump-839701142", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-595259316 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1454</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:2</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1437</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
    <span class=sf-dump-index>1</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1438</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-595259316", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1410225823 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-1410225823", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-940515343 data-indent-pad="  ">{<a class=sf-dump-ref>#1605</a><samp data-depth=1 class=sf-dump-expanded>
  +"<span class=sf-dump-public title="Runtime added dynamic property">iteration</span>": <span class=sf-dump-num>1</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">index</span>": <span class=sf-dump-num>0</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">remaining</span>": <span class=sf-dump-num>1</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">count</span>": <span class=sf-dump-num>2</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">first</span>": <span class=sf-dump-const>true</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">last</span>": <span class=sf-dump-const>false</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">odd</span>": <span class=sf-dump-const>true</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">even</span>": <span class=sf-dump-const>false</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">depth</span>": <span class=sf-dump-num>1</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">parent</span>": <span class=sf-dump-const>null</span>
</samp>}
</pre><script>Sfdump("sf-dump-940515343", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-636733484 data-indent-pad="  "><span class=sf-dump-const>false</span>
</pre><script>Sfdump("sf-dump-636733484", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1735532655 data-indent-pad="  "><span class=sf-dump-note>App\Models\Charge</span> {<a class=sf-dump-ref>#1437</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
  #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
  #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
  #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
  +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
  #<span class=sf-dump-protected title="Protected property">with</span>: []
  #<span class=sf-dump-protected title="Protected property">withCount</span>: []
  +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
  +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
  +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>id</span>" => <span class=sf-dump-num>2</span>
    "<span class=sf-dump-key>n_charge</span>" => "<span class=sf-dump-str>2</span>"
    "<span class=sf-dump-key>asunto</span>" => "<span class=sf-dump-str title="6 characters">asunto</span>"
    "<span class=sf-dump-key>charge_period</span>" => "<span class=sf-dump-str title="4 characters">2026</span>"
    "<span class=sf-dump-key>document_date</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>tipo_interesado</span>" => "<span class=sf-dump-str title="15 characters">Persona Natural</span>"
    "<span class=sf-dump-key>user_id</span>" => <span class=sf-dump-num>1</span>
    "<span class=sf-dump-key>natural_person_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>legal_entity_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>resolucion_id</span>" => <span class=sf-dump-num>230642</span>
    "<span class=sf-dump-key>created_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
    "<span class=sf-dump-key>updated_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>id</span>" => <span class=sf-dump-num>2</span>
    "<span class=sf-dump-key>n_charge</span>" => "<span class=sf-dump-str>2</span>"
    "<span class=sf-dump-key>asunto</span>" => "<span class=sf-dump-str title="6 characters">asunto</span>"
    "<span class=sf-dump-key>charge_period</span>" => "<span class=sf-dump-str title="4 characters">2026</span>"
    "<span class=sf-dump-key>document_date</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>tipo_interesado</span>" => "<span class=sf-dump-str title="15 characters">Persona Natural</span>"
    "<span class=sf-dump-key>user_id</span>" => <span class=sf-dump-num>1</span>
    "<span class=sf-dump-key>natural_person_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>legal_entity_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>resolucion_id</span>" => <span class=sf-dump-num>230642</span>
    "<span class=sf-dump-key>created_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
    "<span class=sf-dump-key>updated_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">changes</span>: []
  #<span class=sf-dump-protected title="Protected property">casts</span>: []
  #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
  #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
  #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
  #<span class=sf-dump-protected title="Protected property">appends</span>: []
  #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
  #<span class=sf-dump-protected title="Protected property">observables</span>: []
  #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>user</span>" => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\User
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">User</span></span> {<a class=sf-dump-ref>#1442</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="5 characters">users</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: []
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: <span class=sf-dump-note>array:2</span> [ &#8230;2]
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:4</span> [ &#8230;4]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">rememberTokenName</span>: "<span class=sf-dump-str title="14 characters">remember_token</span>"
      #<span class=sf-dump-protected title="Protected property">accessToken</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">roleClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">permissionClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardPermissionsIndex</span>: <span class=sf-dump-const title="Uninitialized property">? array</span>
    </samp>}
    "<span class=sf-dump-key>naturalPerson</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>legalEntity</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>signature</span>" => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Signature
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Signature</span></span> {<a class=sf-dump-ref>#1457</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="10 characters">signatures</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:15</span> [ &#8230;15]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:15</span> [ &#8230;15]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:2</span> [ &#8230;2]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
    "<span class=sf-dump-key>resolucion</span>" => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Resolucion
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Resolucion</span></span> {<a class=sf-dump-ref>#1469</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="11 characters">resolucions</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: []
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:7</span> [ &#8230;7]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">dates</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">touches</span>: []
  +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
  +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">hidden</span>: []
  #<span class=sf-dump-protected title="Protected property">visible</span>: []
  #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => "<span class=sf-dump-str title="8 characters">n_charge</span>"
    <span class=sf-dump-index>1</span> => "<span class=sf-dump-str title="13 characters">charge_period</span>"
    <span class=sf-dump-index>2</span> => "<span class=sf-dump-str title="13 characters">document_date</span>"
    <span class=sf-dump-index>3</span> => "<span class=sf-dump-str title="7 characters">user_id</span>"
    <span class=sf-dump-index>4</span> => "<span class=sf-dump-str title="13 characters">resolucion_id</span>"
    <span class=sf-dump-index>5</span> => "<span class=sf-dump-str title="15 characters">tipo_interesado</span>"
    <span class=sf-dump-index>6</span> => "<span class=sf-dump-str title="17 characters">natural_person_id</span>"
    <span class=sf-dump-index>7</span> => "<span class=sf-dump-str title="15 characters">legal_entity_id</span>"
    <span class=sf-dump-index>8</span> => "<span class=sf-dump-str title="6 characters">asunto</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => "<span class=sf-dump-str>*</span>"
  </samp>]
</samp>}
</pre><script>Sfdump("sf-dump-1735532655", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-2106369999 data-indent-pad="  "><span class=sf-dump-const>true</span>
</pre><script>Sfdump("sf-dump-2106369999", {"maxDepth":3,"maxStringLength":160})</script> 8.2.10 10.50.2 es false true local   select * from `sessions` where `id` = ? limit 1 16.8 mysql KE8nAtbHhTVpq7GkZNPabTwwlapPT2QsgK4zaLQn 1777123984.6302 select * from `users` where `id` = ? limit 1 0.92 mysql 1 1777123984.6431 select `value` from `settings` where `key` = ? limit 1 0.75 mysql charge_period 1777123984.6478 select `roles`.*, `model_has_roles`.`model_id` as `pivot_model_id`, `model_has_roles`.`role_id` as `pivot_role_id`, `model_has_roles`.`model_type` as `pivot_model_type` from `roles` inner join `model_has_roles` on `roles`.`id` = `model_has_roles`.`role_id` where `model_has_roles`.`model_id` in (1) and `model_has_roles`.`model_type` = ? 1.39 mysql App\Models\User 1777123984.6559 select * from `charges` where `resolucion_id` is not null and (`charge_period` = ? or `charge_period` is null) order by `created_at` desc 1.08 mysql 2026 1777123984.6594 select * from `users` where `users`.`id` in (1) 0.9 mysql  1777123984.662 select * from `signatures` where `signatures`.`charge_id` in (1, 2) 0.7 mysql  1777123984.6652 select * from `users` where `users`.`id` in (1) 0.55 mysql  1777123984.666 select * from `users` where `users`.`id` in (1) 0.54 mysql  1777123984.6669 select * from `resolucions` where `resolucions`.`id` in (224071, 230642) 1.2 mysql  1777123984.6685 select * from `charges` where `user_id` = ? and `resolucion_id` is null and (`charge_period` = ? or `charge_period` is null) order by `created_at` desc 1.2 mysql 1 2026 1777123984.6702 select * from `charges` where `resolucion_id` is null and exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `assigned_to` = ?) and `tipo_interesado` not in (?, ?) and (`charge_period` = ? or `charge_period` is null) and exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` != ?) order by `created_at` desc 1.06 mysql 1 Persona Juridica Persona Natural 2026 rechazado 1777123984.6721 select * from `charges` where `user_id` = ? and `resolucion_id` is null and `tipo_interesado` in (?, ?) and (`charge_period` = ? or `charge_period` is null) order by `created_at` desc 0.89 mysql 1 Persona Juridica Persona Natural 2026 1777123984.6734 select count(*) as aggregate from `charges` where exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` = ?) 0.89 mysql firmado 1777123984.6747 select count(*) as aggregate from `charges` where exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` = ?) 0.78 mysql pendiente 1777123984.676 select * from `users` where `id` != ? order by `name` asc 0.72 mysql 1 1777123984.6769 select distinct `charge_period` from `charges` where `charge_period` is not null order by `charge_period` desc 0.68 mysql  1777123984.6779 select `value` from `settings` where `key` = ? limit 1 0.61 mysql charges_refresh_interval 1777123984.6787 local null null C:\laragon\www\Qilqana null 1a5370e3-621f-46cf-b3ff-ce9d95343ebb null null phpstorm auto false C:\laragon\www\Qilqana null true false \ Clipboard %path:%line true Sublime subl://open?url=file://%path&line=%line TextMate txmt://open?url=file://%path&line=%line Emacs emacs://open?url=file://%path&line=%line MacVim mvim://open/?url=file://%path&line=%line PhpStorm phpstorm://open?file=%path&line=%line PHPStorm Remote javascript:r = new XMLHttpRequest;r.open("get", "http://localhost:63342/api/file/%path:%line");r.send() Idea idea://open?file=%path&line=%line VS Code vscode://file/%path:%line VS Code Insiders vscode-insiders://file/%path:%line VS Code Remote vscode://vscode-remote/%path:%line VS Code Insiders Remote vscode-insiders://vscode-remote/%path:%line VS Codium vscodium://file/%path:%line Cursor cursor://file/%path:%line Atom atom://core/open/file?filename=%path&line=%line Nova nova://open?path=%path&line=%line NetBeans netbeans://open/?f=%path:%line Zed zed://file/%path:%line Windsurf windsurf://file/%path:%line Xdebug xdebug://%path@%line https://flareapp.io/api/public-reports  /_ignition/update-config C:\laragon\www\Qilqana\app\Models\Charge.php 68 handleError Illuminate\Foundation\Bootstrap\HandleExceptions { return $this->hasOne(Signature::class); } null /* Accessors para optimizar vistas */ null public function getInteresadoLabelAttribute(): string { switch ($this->tipo_interesado) { case 'Persona Juridica': return $this->legalEntity?->razon_social ?: $this->legalEntity?->ruc ?: '---'; case 'Persona Natural': $person = $this->naturalPerson; $fullName = trim(($person->nombres ?? '').' '.($person->apellido_paterno ?? '').' '.($person->apellido_materno ?? '')); null return $fullName !== '' ? $fullName : ($person->dni ?: '---'); case 'Trabajador UGEL': return $this->user?->name.' '.$this->user?->last_name ?: '---'; default: return '---'; } } null public function getHasSignatureAttribute(): bool { return (bool) ($this->signature?->signature_root); } null public function getHasCartaPoderAttribute(): bool {  true app\Models\Charge.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Bootstrap\HandleExceptions.php 255 Illuminate\Foundation\Bootstrap\{closure} Illuminate\Foundation\Bootstrap\HandleExceptions * @return \Symfony\Component\ErrorHandler\Error\FatalError */ protected function fatalErrorFromPhpError(array $error, $traceOffset = null) { return new FatalError($error['message'], 0, $error, $traceOffset); } null /** * Forward a method call to the given method if an application instance exists. * * @return callable */ protected function forwardsTo($method) { return fn (...$arguments) => static::$app ? $this->{$method}(...$arguments) : false; } null /** * Determine if the error level is a deprecation. * * @param  int  $level * @return bool */ protected function isDeprecation($level) { return in_array($level, [E_DEPRECATED, E_USER_DEPRECATED]); } null level 2 int false false false message Attempt to read property "dni" on null string false false false file C:\laragon\www\Qilqana\app\Models\Charge.php string false false false line 68 int false false false false vendor\laravel\framework\src\Illuminate\Foundation\Bootstrap\HandleExceptions.php C:\laragon\www\Qilqana\app\Models\Charge.php 68 getInteresadoLabelAttribute App\Models\Charge { return $this->hasOne(Signature::class); } null /* Accessors para optimizar vistas */ null public function getInteresadoLabelAttribute(): string { switch ($this->tipo_interesado) { case 'Persona Juridica': return $this->legalEntity?->razon_social ?: $this->legalEntity?->ruc ?: '---'; case 'Persona Natural': $person = $this->naturalPerson; $fullName = trim(($person->nombres ?? '').' '.($person->apellido_paterno ?? '').' '.($person->apellido_materno ?? '')); null return $fullName !== '' ? $fullName : ($person->dni ?: '---'); case 'Trabajador UGEL': return $this->user?->name.' '.$this->user?->last_name ?: '---'; default: return '---'; } } null public function getHasSignatureAttribute(): bool { return (bool) ($this->signature?->signature_root); } null public function getHasCartaPoderAttribute(): bool { arg0 2 int false false false arg1 Attempt to read property "dni" on null string false false false arg2 C:\laragon\www\Qilqana\app\Models\Charge.php string false false false arg3 68 int false false false true app\Models\Charge.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 658 mutateAttribute Illuminate\Database\Eloquent\Model return static::$getAttributeMutatorCache[get_class($this)][$key] = false; } null return static::$getAttributeMutatorCache[get_class($this)][$key] = is_callable($this->{Str::camel($key)}()->get); } null /** * Get the value of an attribute using its mutator. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function mutateAttribute($key, $value) { return $this->{'get'.Str::studly($key).'Attribute'}($value); } null /** * Get the value of an "Attribute" return type marked attribute using its mutator. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function mutateAttributeMarkedAttribute($key, $value) { if (array_key_exists($key, $this->attributeCastCache)) { return $this->attributeCastCache[$key]; } arg0 null null false false false false vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 2124 transformModelValue Illuminate\Database\Eloquent\Model } null /** * Transform a raw model value using mutators, casts, etc. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transformModelValue($key, $value) { // If the attribute has a get mutator, we will call that then return what // it returns as the value, which is useful for transforming values on // retrieval from the model to a form that is more useful for usage. if ($this->hasGetMutator($key)) { return $this->mutateAttribute($key, $value); } elseif ($this->hasAttributeGetMutator($key)) { return $this->mutateAttributeMarkedAttribute($key, $value); } null // If the attribute exists within the cast array, we will convert it to // an appropriate native PHP type dependent upon the associated value // given with the key in the pair. Dayle made this comment line up. if ($this->hasCast($key)) { if (static::preventsAccessingMissingAttributes() && ! array_key_exists($key, $this->attributes) && ($this->isEnumCastable($key) || in_array($this->getCastType($key), static::$primitiveCastTypes))) { $this->throwMissingAttributeExceptionIfApplicable($key); } key interesado_label string false false false value null null false false false false vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 489 getAttributeValue Illuminate\Database\Eloquent\Model null throw new MissingAttributeException($this, $key); } null return null; } null /** * Get a plain attribute (not a relationship). * * @param  string  $key * @return mixed */ public function getAttributeValue($key) { return $this->transformModelValue($key, $this->getAttributeFromArray($key)); } null /** * Get an attribute from the $attributes array. * * @param  string  $key * @return mixed */ protected function getAttributeFromArray($key) { return $this->getAttributes()[$key] ?? null; } null /** key interesado_label string false false false value null null false false false false vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 443 getAttribute Illuminate\Database\Eloquent\Model */ public function getAttribute($key) { if (! $key) { return; } null // If the attribute exists in the attribute array or has a "get" mutator we will // get the attribute's value. Otherwise, we will proceed as if the developers // are asking for a relationship's value. This covers both types of values. if (array_key_exists($key, $this->attributes) || array_key_exists($key, $this->casts) || $this->hasGetMutator($key) || $this->hasAttributeMutator($key) || $this->isClassCastable($key)) { return $this->getAttributeValue($key); } null // Here we will determine if the model base class itself contains this given key // since we don't want to treat any of those methods as relationships because // they are all intended as helper methods and none of these are relations. if (method_exists(self::class, $key)) { return $this->throwMissingAttributeExceptionIfApplicable($key); } null return $this->isRelation($key) || $this->relationLoaded($key) ? $this->getRelationValue($key) : $this->throwMissingAttributeExceptionIfApplicable($key); } null key interesado_label string false false false false vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Model.php 2227 __get Illuminate\Database\Eloquent\Model * @return string */ public function broadcastChannel() { return str_replace('\\', '.', get_class($this)).'.'.$this->getKey(); } null /** * Dynamically retrieve attributes on the model. * * @param  string  $key * @return mixed */ public function __get($key) { return $this->getAttribute($key); } null /** * Dynamically set attributes on the model. * * @param  string  $key * @param  mixed  $value * @return void */ public function __set($key, $value) { $this->setAttribute($key, $value); } null key interesado_label string false false false false vendor\laravel\framework\src\Illuminate\Database\Eloquent\Model.php C:\laragon\www\Qilqana\resources\views\charges\partials\item-actions.blade.php 40 require null <span class="material-symbols-outlined">block</span> </button> @endif null @include('charges.forms.delete', [ 'charge' => $charge, 'disabled' => ($charge->signature?->signature_status !== 'pendiente' && !Auth::user()->hasRole('ADMINISTRADOR')), ]) </div> null <div class="mt-1"> <button type="button" class="btn btn-outline-secondary btn-sm btn-view-charge-details" title="Ver detalles" data-charge-id="{{ $charge->id }}" data-n-charge="{{ $charge->n_charge }}" data-interesado="{{ $charge->interesado_label }}" data-tipo="{{ $charge->tipo_interesado }}" data-asunto="{{ $charge->asunto }}" data-fecha="{{ $charge->document_date ? \Carbon\Carbon::parse($charge->document_date)->format('d/m/Y') : '---' }}" data-user="{{ $charge->user?->name }} {{ $charge->user?->last_name }}" data-status="{{ ucfirst($charge->signature?->signature_status ?? 'pendiente') }}" data-has-signature="{{ $charge->has_signature ? '1' : '0' }}" data-signature-url="{{ route('charges.file.signature', $charge) }}" data-signer="{{ $charge->signature?->signer?->name ?? '' }} {{ $charge->signature?->signer?->last_name ?? '' }}" data-titularidad="{{ $charge->signature?->titularidad ? '1' : '0' }}" data-parentesco="{{ $charge->signature?->parentesco ?? '' }}" data-titular-name="{{ $charge->resolucion?->nombres_apellidos ?? $charge->naturalPerson?->full_name ?? '' }}" data-has-evidence="{{ $charge->has_evidence ? '1' : '0' }}" data-evidence-url="{{ route('charges.file.evidence', $charge) }}" data-has-carta-poder="{{ $charge->has_carta_poder ? '1' : '0' }}" key interesado_label string false false false true resources\views\charges\partials\item-actions.blade.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\aee3964602ead821ce0538ab38b5b82c.php string false false false false vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/aee3964602ead821ce0538ab38b5b82c.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/aee3964602ead821ce0538ab38b5b82c.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/partials/item-actions.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\resources\views\charges\partials\lists\resolution.blade.php 74 require null <div class="d-flex justify-content-between align-items-start gap-2"> <div> <div class="small text-muted">Cargo #{{ $charge->n_charge }}</div> <div class="fw-semibold">RD: {{ $charge->resolucion?->rd }}</div> <div class="small text-muted">{{ $charge->resolucion?->periodo }}</div> </div> @include('charges.partials.status-badge', [ 'status' => $charge->signature?->signature_status, ]) </div> <div class="mt-2"> <div class="small text-muted">Interesado: {{ $charge->resolucion?->nombres_apellidos }} </div> </div> <div class="mt-3"> @include('charges.partials.item-actions', [ 'charge' => $charge, 'canSign' => true, ]) </div> </div> </div> @empty <div class="text-center text-muted py-4">No hay cargos de resoluciones.</div> @endforelse </div> null {{-- VISTA ESCRITORIO --}} <div class="table-responsive d-none d-md-block"> <table class="table align-middle table-hover mb-0"> callback null null false false false true resources\views\charges\partials\lists\resolution.blade.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\9950652d1e1370f0a05e8d8b1308af59.php string false false false false vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/9950652d1e1370f0a05e8d8b1308af59.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/9950652d1e1370f0a05e8d8b1308af59.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/partials/lists/resolution.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\resources\views\charges\partials\dashboard.blade.php 127 require null </button> </li> <li class="nav-item" role="presentation"> <button class="nav-link d-flex align-items-center gap-2" id="created-tab" data-bs-toggle="tab" data-bs-target="#created-tab-pane" type="button" role="tab" aria-controls="created-tab-pane" aria-selected="false"> Creados <span class="badge bg-secondary ms-1">{{ $createdTotal }}</span> </button> </li> <li class="nav-item" role="presentation"> <button class="nav-link d-flex align-items-center gap-2" id="sent-tab" data-bs-toggle="tab" data-bs-target="#sent-tab-pane" type="button" role="tab" aria-controls="sent-tab-pane" aria-selected="false"> Enviados <span class="badge bg-secondary ms-1">{{ $sentTotal }}</span> </button> </li> </ul> null <div class="tab-content" id="charges-tabs-content"> @if ($canViewResolutionCharges) @include('charges.partials.lists.resolution', ['active' => true]) @endif null @include('charges.partials.lists.received', ['active' => !$canViewResolutionCharges]) null @include('charges.partials.lists.created') null @include('charges.partials.lists.sent') </div> null callback null null false false false true resources\views\charges\partials\dashboard.blade.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\5ad9442a6a0a540f7d994a78d05830d2.php string false false false false vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/5ad9442a6a0a540f7d994a78d05830d2.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/5ad9442a6a0a540f7d994a78d05830d2.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/partials/dashboard.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\resources\views\charges\index.blade.php 42 require null <h5 class="mb-2">Errores durante la importacion:</h5> <ul class="mb-0"> @foreach (session('errores') as $error) <li>{{ $error }}</li> @endforeach </ul> </div> @endif null @if (session('success')) <div class="alert alert-success shadow-sm"> {{ session('success') }} </div> @endif <div id="charges-dashboard" data-refresh-interval="{{ $refreshIntervalSeconds ?? 5 }}" data-refresh-url="{{ route('charges.refresh') }}"> @include('charges.partials.dashboard') </div> </div> {{-- Formularios de crear cargos --}} @include('charges.forms.create') null {{-- Formularios de editar cargos --}} @include('charges.forms.edit') null {{-- Formularios de firmar cargos --}} @include('charges.forms.sign') null {{-- Formularios de rechazar cargos --}} @include('charges.forms.reject') null callback null null false false false true resources\views\charges\index.blade.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\15d308017064a4a142ff7af4cc62d614.php string false false false false vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/15d308017064a4a142ff7af4cc62d614.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/15d308017064a4a142ff7af4cc62d614.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/index.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Response.php 69 setContent Illuminate\Http\Response // from routes that will be automatically transformed to their JSON form. if ($this->shouldBeJson($content)) { $this->header('Content-Type', 'application/json'); null $content = $this->morphToJson($content); null if ($content === false) { throw new InvalidArgumentException(json_last_error_msg()); } } null // If this content implements the "Renderable" interface then we will call the // render method on the object so we will avoid any "__toString" exceptions // that might be thrown and have their errors obscured by PHP's handling. elseif ($content instanceof Renderable) { $content = $content->render(); } null parent::setContent($content); null return $this; } null /** * Determine if the given content should be turned into JSON. * * @param  mixed  $content * @return bool */ protected function shouldBeJson($content) callback null null false false false false vendor\laravel\framework\src\Illuminate\Http\Response.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Response.php 35 __construct Illuminate\Http\Response null /** * Create a new HTTP response. * * @param  mixed  $content * @param  int  $status * @param  array  $headers * @return void * * @throws \InvalidArgumentException */ public function __construct($content = '', $status = 200, array $headers = []) { $this->headers = new ResponseHeaderBag($headers); null $this->setContent($content); $this->setStatusCode($status); $this->setProtocolVersion('1.0'); } null /** * Set the content on the response. * * @param  mixed  $content * @return $this * * @throws \InvalidArgumentException */ public function setContent(mixed $content): static { null false vendor\laravel\framework\src\Illuminate\Http\Response.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 918 toResponse Illuminate\Routing\Router if ($response instanceof PsrResponseInterface) { $response = (new HttpFoundationFactory)->createResponse($response); } elseif ($response instanceof Model && $response->wasRecentlyCreated) { $response = new JsonResponse($response, 201); } elseif ($response instanceof Stringable) { $response = new Response($response->__toString(), 200, ['Content-Type' => 'text/html']); } elseif (! $response instanceof SymfonyResponse && ($response instanceof Arrayable || $response instanceof Jsonable || $response instanceof ArrayObject || $response instanceof JsonSerializable || $response instanceof stdClass || is_array($response))) { $response = new JsonResponse($response); } elseif (! $response instanceof SymfonyResponse) { $response = new Response($response, 200, ['Content-Type' => 'text/html']); } null if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) { $response->setNotModified(); } null return $response->prepare($request); } null /** * Substitute the route bindings onto the route. * * @param  \Illuminate\Routing\Route  $route * @return \Illuminate\Routing\Route null false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 885 prepareResponse Illuminate\Routing\Router { return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all(); } null /** * Create a response instance from the given value. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { $this->events->dispatch(new PreparingResponse($request, $response)); null return tap(static::toResponse($request, $response), function ($response) use ($request) { $this->events->dispatch(new ResponsePrepared($request, $response)); }); } null /** * Static version of prepareResponse. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public static function toResponse($request, $response) { if ($response instanceof Responsable) { null false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 805 Illuminate\Routing\{closure} Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 144 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline return $this->then(function ($passable) { return $passable; }); } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\boost\src\Middleware\InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\boost\src\Middleware\InjectBoost.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Middleware\SubstituteBindings.php 50 handle Illuminate\Routing\Middleware\SubstituteBindings public function __construct(Registrar $router) { $this->router = $router; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { try { $this->router->substituteBindings($route = $request->route()); null $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Routing\Middleware\SubstituteBindings.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Auth\Middleware\Authenticate.php 57 handle Illuminate\Auth\Middleware\Authenticate null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @param  string[]  ...$guards * @return mixed * * @throws \Illuminate\Auth\AuthenticationException */ public function handle($request, Closure $next, ...$guards) { $this->authenticate($request, $guards); null return $next($request); } null /** * Determine if the user is logged in to any of the given guards. * * @param  \Illuminate\Http\Request  $request * @param  array  $guards * @return void * * @throws \Illuminate\Auth\AuthenticationException */ protected function authenticate($request, array $guards) { if (empty($guards)) { arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Auth\Middleware\Authenticate.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false guards  array false true false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\VerifyCsrfToken.php 78 handle Illuminate\Foundation\Http\Middleware\VerifyCsrfToken * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\VerifyCsrfToken.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Middleware\ShareErrorsFromSession.php 49 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // Putting the errors in the view for every view allows the developer to just // assume that some errors are always available, which is convenient since // they don't have to continually run checks for the presence of errors. null return $next($request); } } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\View\Middleware\ShareErrorsFromSession.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php 121 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // Again, if the session has been configured we will need to close out the session // so that the attributes may be persisted to some storage medium. We will also // add the session identifier cookie to the application response headers now. $this->saveSession($request); null return $response; } null /** arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php 64 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * Handle the given request within session state. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleRequestWhileBlocking(Request $request, $session, Closure $next) { if (! $request->route() instanceof Route) { return; request GET http://qilqana.test/charges Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse.php 37 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies * @return void */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Cookie\Middleware\EncryptCookies.php 67 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * Decrypt the cookies on the request. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @return \Symfony\Component\HttpFoundation\Request */ protected function decrypt(Request $request) { foreach ($request->cookies as $key => $cookie) { if ($this->isDisabled($key)) { continue; } arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Cookie\Middleware\EncryptCookies.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 119 then Illuminate\Pipeline\Pipeline return $this; } null /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null return $pipeline($this->passable); } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { return $this->then(function ($passable) { return $passable; }); } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 805 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php:805-807 Closure false false false false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 784 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * Run the given route within a Stack "onion" instance. * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 748 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * Dispatch the request to a route and return the response. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request)); } null /** * Find the route matching a given request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Routing\Route */ protected function findRoute($request) { $this->events->dispatch(new Routing($request)); null $this->current = $route = $this->routes->match($request); null request GET http://qilqana.test/charges Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 737 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * Dispatch the request to a route and return the response. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request)); } null /** request GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 200 Illuminate\Foundation\Http\{closure} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * Call the terminate method on any terminable middleware. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Http\Response  $response * @return void */ public function terminate($request, $response) { $this->terminateMiddleware($request, $response); null request GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 144 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline return $this->then(function ($passable) { return $passable; }); } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TrimStrings.php 40 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { if (in_array($key, $this->except, true) || ! is_string($value)) { return $value; } request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TrimStrings.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ValidatePostSize.php 27 handle Illuminate\Foundation\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException; } null return $next($request); } null /** * Determine the server 'post_max_size' as bytes. * * @return int */ protected function getPostMaxSize() { if (is_numeric($postMaxSize = ini_get('post_max_size'))) { return (int) $postMaxSize; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ValidatePostSize.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance.php 99 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * Determine if the incoming request has a maintenance mode bypass cookie. * * @param  \Illuminate\Http\Request  $request * @param  array  $data * @return bool */ protected function hasValidBypassCookie($request, array $data) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Middleware\HandleCors.php 49 handle Illuminate\Http\Middleware\HandleCors { $this->container = $container; $this->cors = $cors; } null /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Http\Middleware\HandleCors.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Middleware\TrustProxies.php 39 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * Sets the trusted proxies on the request. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function setTrustedProxyIpAddresses(Request $request) { $trustedIps = $this->proxies() ?: config('trustedproxy.proxies'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Http\Middleware\TrustProxies.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 119 then Illuminate\Pipeline\Pipeline return $this; } null /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null return $pipeline($this->passable); } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { return $this->then(function ($passable) { return $passable; }); } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Facade::clearResolvedInstance('request'); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php:197-201 Closure false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php C:\laragon\www\Qilqana\public\index.php 51 [top] null | | Composer provides a convenient, automatically generated class loader for | this application. We just need to utilize it! We'll simply require it | into the script here so we don't need to manually load our classes. | */ null require __DIR__.'/../vendor/autoload.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request using | the application's HTTP kernel. Then, we will send the response back | to this client's browser, allowing them to enjoy our application. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() )->send(); null $kernel->terminate($request, $response); null  true public\index.php http://qilqana.test/charges null GET Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0    select * from `sessions` where `id` = ? limit 1 16.8 mysql KE8nAtbHhTVpq7GkZNPabTwwlapPT2QsgK4zaLQn 1777123984.6302 select * from `users` where `id` = ? limit 1 0.92 mysql 1 1777123984.6431 select `value` from `settings` where `key` = ? limit 1 0.75 mysql charge_period 1777123984.6478 select `roles`.*, `model_has_roles`.`model_id` as `pivot_model_id`, `model_has_roles`.`role_id` as `pivot_role_id`, `model_has_roles`.`model_type` as `pivot_model_type` from `roles` inner join `model_has_roles` on `roles`.`id` = `model_has_roles`.`role_id` where `model_has_roles`.`model_id` in (1) and `model_has_roles`.`model_type` = ? 1.39 mysql App\Models\User 1777123984.6559 select * from `charges` where `resolucion_id` is not null and (`charge_period` = ? or `charge_period` is null) order by `created_at` desc 1.08 mysql 2026 1777123984.6594 select * from `users` where `users`.`id` in (1) 0.9 mysql  1777123984.662 select * from `signatures` where `signatures`.`charge_id` in (1, 2) 0.7 mysql  1777123984.6652 select * from `users` where `users`.`id` in (1) 0.55 mysql  1777123984.666 select * from `users` where `users`.`id` in (1) 0.54 mysql  1777123984.6669 select * from `resolucions` where `resolucions`.`id` in (224071, 230642) 1.2 mysql  1777123984.6685 select * from `charges` where `user_id` = ? and `resolucion_id` is null and (`charge_period` = ? or `charge_period` is null) order by `created_at` desc 1.2 mysql 1 2026 1777123984.6702 select * from `charges` where `resolucion_id` is null and exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `assigned_to` = ?) and `tipo_interesado` not in (?, ?) and (`charge_period` = ? or `charge_period` is null) and exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` != ?) order by `created_at` desc 1.06 mysql 1 Persona Juridica Persona Natural 2026 rechazado 1777123984.6721 select * from `charges` where `user_id` = ? and `resolucion_id` is null and `tipo_interesado` in (?, ?) and (`charge_period` = ? or `charge_period` is null) order by `created_at` desc 0.89 mysql 1 Persona Juridica Persona Natural 2026 1777123984.6734 select count(*) as aggregate from `charges` where exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` = ?) 0.89 mysql firmado 1777123984.6747 select count(*) as aggregate from `charges` where exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` = ?) 0.78 mysql pendiente 1777123984.676 select * from `users` where `id` != ? order by `name` asc 0.72 mysql 1 1777123984.6769 select distinct `charge_period` from `charges` where `charge_period` is not null order by `charge_period` desc 0.68 mysql  1777123984.6779 select `value` from `settings` where `key` = ? limit 1 0.61 mysql charges_refresh_interval 1777123984.6787   null qilqana.test keep-alive max-age=0 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 http://qilqana.test/charges gzip, deflate es-419,es;q=0.9,en;q=0.8,ja;q=0.7,th;q=0.6,ko;q=0.5 <CENSORED> 1|LMdigGaD4gInPG7UFT4HNiNSjzg9MiGxyUL8xYezcWkTiJpCTMFS5tsxjGPG|$2y$12$WbJyS7sgPdXNvaihX7CNXe9HlrIjg9GQx9pfIqWmY6LTNrDNKzzEa u1GnxmSu44kIW5DOHkL8h3Ritba0zDkFribOr0JX KE8nAtbHhTVpq7GkZNPabTwwlapPT2QsgK4zaLQn u1GnxmSu44kIW5DOHkL8h3Ritba0zDkFribOr0JX 1 http://qilqana.test/charges   8.2.10 10.50.2 es false true local 1 ADMIN ADMIN 000000000 2026-04-20T00:59:38.000000Z 2026-04-20T00:59:38.000000Z 1 ADMINISTRADOR web 2026-04-20T00:59:38.000000Z 2026-04-20T00:59:38.000000Z App\Models\User 1 1 charges.index  App\Http\Controllers\ChargeController@index web auth null null C:\laragon\www\Qilqana\resources\views\charges\partials\item-actions.blade.php <pre class=sf-dump id=sf-dump-1621954606 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\ViewErrorBag</span> {<a class=sf-dump-ref>#1363</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">bags</span>: []
</samp>}
</pre><script>Sfdump("sf-dump-1621954606", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-146130989 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1486</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-146130989", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-2113829245 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1522</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-2113829245", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-38496348 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1545</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-38496348", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-2076053081 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1454</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:2</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1437</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
    <span class=sf-dump-index>1</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1438</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-2076053081", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1600051512 data-indent-pad="  "><span class=sf-dump-num>2</span>
</pre><script>Sfdump("sf-dump-1600051512", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-635990182 data-indent-pad="  "><span class=sf-dump-num>2</span>
</pre><script>Sfdump("sf-dump-635990182", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1308672804 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1308672804", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-2124182580 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1555</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\User
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">User</span></span> {<a class=sf-dump-ref>#1556</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="5 characters">users</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: []
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: <span class=sf-dump-note>array:2</span> [ &#8230;2]
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:4</span> [ &#8230;4]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">rememberTokenName</span>: "<span class=sf-dump-str title="14 characters">remember_token</span>"
      #<span class=sf-dump-protected title="Protected property">accessToken</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">roleClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">permissionClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardPermissionsIndex</span>: <span class=sf-dump-const title="Uninitialized property">? array</span>
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-2124182580", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-353671438 data-indent-pad="  "><span class=sf-dump-note>array:1</span> [<samp data-depth=1 class=sf-dump-expanded>
  <span class=sf-dump-index>0</span> => "<span class=sf-dump-str title="4 characters">2026</span>"
</samp>]
</pre><script>Sfdump("sf-dump-353671438", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-36816146 data-indent-pad="  "><span class=sf-dump-num>5</span>
</pre><script>Sfdump("sf-dump-36816146", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-23416707 data-indent-pad="  "><span class=sf-dump-const>true</span>
</pre><script>Sfdump("sf-dump-23416707", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-483303713 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-483303713", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-925898599 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-925898599", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1032934122 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-1032934122", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-153349858 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-153349858", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1074801906 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-1074801906", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-11503082 data-indent-pad="  "><span class=sf-dump-num>1</span>
</pre><script>Sfdump("sf-dump-11503082", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-687201463 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1603</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-687201463", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-686351675 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-686351675", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-650465641 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-650465641", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-254312209 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-254312209", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-353292701 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-353292701", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1897958122 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1897958122", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1636105539 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1636105539", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1054240420 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1054240420", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-689339028 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-689339028", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-839701142 data-indent-pad="  "><span class=sf-dump-const>true</span>
</pre><script>Sfdump("sf-dump-839701142", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-595259316 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1454</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:2</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1437</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
    <span class=sf-dump-index>1</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1438</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-595259316", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1410225823 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-1410225823", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-940515343 data-indent-pad="  ">{<a class=sf-dump-ref>#1605</a><samp data-depth=1 class=sf-dump-expanded>
  +"<span class=sf-dump-public title="Runtime added dynamic property">iteration</span>": <span class=sf-dump-num>1</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">index</span>": <span class=sf-dump-num>0</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">remaining</span>": <span class=sf-dump-num>1</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">count</span>": <span class=sf-dump-num>2</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">first</span>": <span class=sf-dump-const>true</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">last</span>": <span class=sf-dump-const>false</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">odd</span>": <span class=sf-dump-const>true</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">even</span>": <span class=sf-dump-const>false</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">depth</span>": <span class=sf-dump-num>1</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">parent</span>": <span class=sf-dump-const>null</span>
</samp>}
</pre><script>Sfdump("sf-dump-940515343", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-636733484 data-indent-pad="  "><span class=sf-dump-const>false</span>
</pre><script>Sfdump("sf-dump-636733484", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1735532655 data-indent-pad="  "><span class=sf-dump-note>App\Models\Charge</span> {<a class=sf-dump-ref>#1437</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
  #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
  #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
  #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
  +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
  #<span class=sf-dump-protected title="Protected property">with</span>: []
  #<span class=sf-dump-protected title="Protected property">withCount</span>: []
  +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
  +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
  +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>id</span>" => <span class=sf-dump-num>2</span>
    "<span class=sf-dump-key>n_charge</span>" => "<span class=sf-dump-str>2</span>"
    "<span class=sf-dump-key>asunto</span>" => "<span class=sf-dump-str title="6 characters">asunto</span>"
    "<span class=sf-dump-key>charge_period</span>" => "<span class=sf-dump-str title="4 characters">2026</span>"
    "<span class=sf-dump-key>document_date</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>tipo_interesado</span>" => "<span class=sf-dump-str title="15 characters">Persona Natural</span>"
    "<span class=sf-dump-key>user_id</span>" => <span class=sf-dump-num>1</span>
    "<span class=sf-dump-key>natural_person_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>legal_entity_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>resolucion_id</span>" => <span class=sf-dump-num>230642</span>
    "<span class=sf-dump-key>created_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
    "<span class=sf-dump-key>updated_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>id</span>" => <span class=sf-dump-num>2</span>
    "<span class=sf-dump-key>n_charge</span>" => "<span class=sf-dump-str>2</span>"
    "<span class=sf-dump-key>asunto</span>" => "<span class=sf-dump-str title="6 characters">asunto</span>"
    "<span class=sf-dump-key>charge_period</span>" => "<span class=sf-dump-str title="4 characters">2026</span>"
    "<span class=sf-dump-key>document_date</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>tipo_interesado</span>" => "<span class=sf-dump-str title="15 characters">Persona Natural</span>"
    "<span class=sf-dump-key>user_id</span>" => <span class=sf-dump-num>1</span>
    "<span class=sf-dump-key>natural_person_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>legal_entity_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>resolucion_id</span>" => <span class=sf-dump-num>230642</span>
    "<span class=sf-dump-key>created_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
    "<span class=sf-dump-key>updated_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">changes</span>: []
  #<span class=sf-dump-protected title="Protected property">casts</span>: []
  #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
  #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
  #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
  #<span class=sf-dump-protected title="Protected property">appends</span>: []
  #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
  #<span class=sf-dump-protected title="Protected property">observables</span>: []
  #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>user</span>" => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\User
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">User</span></span> {<a class=sf-dump-ref>#1442</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="5 characters">users</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: []
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: <span class=sf-dump-note>array:2</span> [ &#8230;2]
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:4</span> [ &#8230;4]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">rememberTokenName</span>: "<span class=sf-dump-str title="14 characters">remember_token</span>"
      #<span class=sf-dump-protected title="Protected property">accessToken</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">roleClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">permissionClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardPermissionsIndex</span>: <span class=sf-dump-const title="Uninitialized property">? array</span>
    </samp>}
    "<span class=sf-dump-key>naturalPerson</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>legalEntity</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>signature</span>" => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Signature
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Signature</span></span> {<a class=sf-dump-ref>#1457</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="10 characters">signatures</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:15</span> [ &#8230;15]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:15</span> [ &#8230;15]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:2</span> [ &#8230;2]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
    "<span class=sf-dump-key>resolucion</span>" => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Resolucion
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Resolucion</span></span> {<a class=sf-dump-ref>#1469</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="11 characters">resolucions</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: []
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:7</span> [ &#8230;7]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">dates</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">touches</span>: []
  +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
  +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">hidden</span>: []
  #<span class=sf-dump-protected title="Protected property">visible</span>: []
  #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => "<span class=sf-dump-str title="8 characters">n_charge</span>"
    <span class=sf-dump-index>1</span> => "<span class=sf-dump-str title="13 characters">charge_period</span>"
    <span class=sf-dump-index>2</span> => "<span class=sf-dump-str title="13 characters">document_date</span>"
    <span class=sf-dump-index>3</span> => "<span class=sf-dump-str title="7 characters">user_id</span>"
    <span class=sf-dump-index>4</span> => "<span class=sf-dump-str title="13 characters">resolucion_id</span>"
    <span class=sf-dump-index>5</span> => "<span class=sf-dump-str title="15 characters">tipo_interesado</span>"
    <span class=sf-dump-index>6</span> => "<span class=sf-dump-str title="17 characters">natural_person_id</span>"
    <span class=sf-dump-index>7</span> => "<span class=sf-dump-str title="15 characters">legal_entity_id</span>"
    <span class=sf-dump-index>8</span> => "<span class=sf-dump-str title="6 characters">asunto</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => "<span class=sf-dump-str>*</span>"
  </samp>]
</samp>}
</pre><script>Sfdump("sf-dump-1735532655", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-2106369999 data-indent-pad="  "><span class=sf-dump-const>true</span>
</pre><script>Sfdump("sf-dump-2106369999", {"maxDepth":3,"maxStringLength":160})</script> null null null  web http://qilqana.test/charges ErrorException Attempt to read property "dni" on null C:\laragon\www\Qilqana null 8.2.10 10.50.2 Flare local Illuminate\Foundation\Bootstrap\HandleExceptions handleError    {"url":"http://qilqana.test/charges","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0","timestamp":"2026-04-25T13:33:05.271Z"} 
[2026-04-25 13:33:39] local.DEBUG: Laravel Client PHP 10.50.2 8.2.10 ErrorException 1777124018 Attempt to read property "dni" on null    C:\laragon\www\Qilqana\app\Models\Charge.php 68 handleError Illuminate\Foundation\Bootstrap\HandleExceptions { return $this->hasOne(Signature::class); } null /* Accessors para optimizar vistas */ null public function getInteresadoLabelAttribute(): string { switch ($this->tipo_interesado) { case 'Persona Juridica': return $this->legalEntity?->razon_social ?: $this->legalEntity?->ruc ?: '---'; case 'Persona Natural': $person = $this->naturalPerson; $fullName = trim(($person->nombres ?? '').' '.($person->apellido_paterno ?? '').' '.($person->apellido_materno ?? '')); null return $fullName !== '' ? $fullName : ($person->dni ?: '---'); case 'Trabajador UGEL': return $this->user?->name.' '.$this->user?->last_name ?: '---'; default: return '---'; } } null public function getHasSignatureAttribute(): bool { return (bool) ($this->signature?->signature_root); } null public function getHasCartaPoderAttribute(): bool {  true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Bootstrap\HandleExceptions.php 255 Illuminate\Foundation\Bootstrap\{closure} Illuminate\Foundation\Bootstrap\HandleExceptions * @return \Symfony\Component\ErrorHandler\Error\FatalError */ protected function fatalErrorFromPhpError(array $error, $traceOffset = null) { return new FatalError($error['message'], 0, $error, $traceOffset); } null /** * Forward a method call to the given method if an application instance exists. * * @return callable */ protected function forwardsTo($method) { return fn (...$arguments) => static::$app ? $this->{$method}(...$arguments) : false; } null /** * Determine if the error level is a deprecation. * * @param  int  $level * @return bool */ protected function isDeprecation($level) { return in_array($level, [E_DEPRECATED, E_USER_DEPRECATED]); } null level 2 int false false false message Attempt to read property "dni" on null string false false false file C:\laragon\www\Qilqana\app\Models\Charge.php string false false false line 68 int false false false false C:\laragon\www\Qilqana\app\Models\Charge.php 68 getInteresadoLabelAttribute App\Models\Charge { return $this->hasOne(Signature::class); } null /* Accessors para optimizar vistas */ null public function getInteresadoLabelAttribute(): string { switch ($this->tipo_interesado) { case 'Persona Juridica': return $this->legalEntity?->razon_social ?: $this->legalEntity?->ruc ?: '---'; case 'Persona Natural': $person = $this->naturalPerson; $fullName = trim(($person->nombres ?? '').' '.($person->apellido_paterno ?? '').' '.($person->apellido_materno ?? '')); null return $fullName !== '' ? $fullName : ($person->dni ?: '---'); case 'Trabajador UGEL': return $this->user?->name.' '.$this->user?->last_name ?: '---'; default: return '---'; } } null public function getHasSignatureAttribute(): bool { return (bool) ($this->signature?->signature_root); } null public function getHasCartaPoderAttribute(): bool { arg0 2 int false false false arg1 Attempt to read property "dni" on null string false false false arg2 C:\laragon\www\Qilqana\app\Models\Charge.php string false false false arg3 68 int false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 658 mutateAttribute Illuminate\Database\Eloquent\Model return static::$getAttributeMutatorCache[get_class($this)][$key] = false; } null return static::$getAttributeMutatorCache[get_class($this)][$key] = is_callable($this->{Str::camel($key)}()->get); } null /** * Get the value of an attribute using its mutator. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function mutateAttribute($key, $value) { return $this->{'get'.Str::studly($key).'Attribute'}($value); } null /** * Get the value of an "Attribute" return type marked attribute using its mutator. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function mutateAttributeMarkedAttribute($key, $value) { if (array_key_exists($key, $this->attributeCastCache)) { return $this->attributeCastCache[$key]; } arg0 null null false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 2124 transformModelValue Illuminate\Database\Eloquent\Model } null /** * Transform a raw model value using mutators, casts, etc. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transformModelValue($key, $value) { // If the attribute has a get mutator, we will call that then return what // it returns as the value, which is useful for transforming values on // retrieval from the model to a form that is more useful for usage. if ($this->hasGetMutator($key)) { return $this->mutateAttribute($key, $value); } elseif ($this->hasAttributeGetMutator($key)) { return $this->mutateAttributeMarkedAttribute($key, $value); } null // If the attribute exists within the cast array, we will convert it to // an appropriate native PHP type dependent upon the associated value // given with the key in the pair. Dayle made this comment line up. if ($this->hasCast($key)) { if (static::preventsAccessingMissingAttributes() && ! array_key_exists($key, $this->attributes) && ($this->isEnumCastable($key) || in_array($this->getCastType($key), static::$primitiveCastTypes))) { $this->throwMissingAttributeExceptionIfApplicable($key); } key interesado_label string false false false value null null false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 489 getAttributeValue Illuminate\Database\Eloquent\Model null throw new MissingAttributeException($this, $key); } null return null; } null /** * Get a plain attribute (not a relationship). * * @param  string  $key * @return mixed */ public function getAttributeValue($key) { return $this->transformModelValue($key, $this->getAttributeFromArray($key)); } null /** * Get an attribute from the $attributes array. * * @param  string  $key * @return mixed */ protected function getAttributeFromArray($key) { return $this->getAttributes()[$key] ?? null; } null /** key interesado_label string false false false value null null false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 443 getAttribute Illuminate\Database\Eloquent\Model */ public function getAttribute($key) { if (! $key) { return; } null // If the attribute exists in the attribute array or has a "get" mutator we will // get the attribute's value. Otherwise, we will proceed as if the developers // are asking for a relationship's value. This covers both types of values. if (array_key_exists($key, $this->attributes) || array_key_exists($key, $this->casts) || $this->hasGetMutator($key) || $this->hasAttributeMutator($key) || $this->isClassCastable($key)) { return $this->getAttributeValue($key); } null // Here we will determine if the model base class itself contains this given key // since we don't want to treat any of those methods as relationships because // they are all intended as helper methods and none of these are relations. if (method_exists(self::class, $key)) { return $this->throwMissingAttributeExceptionIfApplicable($key); } null return $this->isRelation($key) || $this->relationLoaded($key) ? $this->getRelationValue($key) : $this->throwMissingAttributeExceptionIfApplicable($key); } null key interesado_label string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Model.php 2227 __get Illuminate\Database\Eloquent\Model * @return string */ public function broadcastChannel() { return str_replace('\\', '.', get_class($this)).'.'.$this->getKey(); } null /** * Dynamically retrieve attributes on the model. * * @param  string  $key * @return mixed */ public function __get($key) { return $this->getAttribute($key); } null /** * Dynamically set attributes on the model. * * @param  string  $key * @param  mixed  $value * @return void */ public function __set($key, $value) { $this->setAttribute($key, $value); } null key interesado_label string false false false false C:\laragon\www\Qilqana\resources\views\charges\partials\item-actions.blade.php 40 require null <span class="material-symbols-outlined">block</span> </button> @endif null @include('charges.forms.delete', [ 'charge' => $charge, 'disabled' => ($charge->signature?->signature_status !== 'pendiente' && !Auth::user()->hasRole('ADMINISTRADOR')), ]) </div> null <div class="mt-1"> <button type="button" class="btn btn-outline-secondary btn-sm btn-view-charge-details" title="Ver detalles" data-charge-id="{{ $charge->id }}" data-n-charge="{{ $charge->n_charge }}" data-interesado="{{ $charge->interesado_label }}" data-tipo="{{ $charge->tipo_interesado }}" data-asunto="{{ $charge->asunto }}" data-fecha="{{ $charge->document_date ? \Carbon\Carbon::parse($charge->document_date)->format('d/m/Y') : '---' }}" data-user="{{ $charge->user?->name }} {{ $charge->user?->last_name }}" data-status="{{ ucfirst($charge->signature?->signature_status ?? 'pendiente') }}" data-has-signature="{{ $charge->has_signature ? '1' : '0' }}" data-signature-url="{{ route('charges.file.signature', $charge) }}" data-signer="{{ $charge->signature?->signer?->name ?? '' }} {{ $charge->signature?->signer?->last_name ?? '' }}" data-titularidad="{{ $charge->signature?->titularidad ? '1' : '0' }}" data-parentesco="{{ $charge->signature?->parentesco ?? '' }}" data-titular-name="{{ $charge->resolucion?->nombres_apellidos ?? $charge->naturalPerson?->full_name ?? '' }}" data-has-evidence="{{ $charge->has_evidence ? '1' : '0' }}" data-evidence-url="{{ route('charges.file.evidence', $charge) }}" data-has-carta-poder="{{ $charge->has_carta_poder ? '1' : '0' }}" key interesado_label string false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\aee3964602ead821ce0538ab38b5b82c.php string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/aee3964602ead821ce0538ab38b5b82c.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/aee3964602ead821ce0538ab38b5b82c.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/partials/item-actions.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false C:\laragon\www\Qilqana\resources\views\charges\partials\lists\resolution.blade.php 74 require null <div class="d-flex justify-content-between align-items-start gap-2"> <div> <div class="small text-muted">Cargo #{{ $charge->n_charge }}</div> <div class="fw-semibold">RD: {{ $charge->resolucion?->rd }}</div> <div class="small text-muted">{{ $charge->resolucion?->periodo }}</div> </div> @include('charges.partials.status-badge', [ 'status' => $charge->signature?->signature_status, ]) </div> <div class="mt-2"> <div class="small text-muted">Interesado: {{ $charge->resolucion?->nombres_apellidos }} </div> </div> <div class="mt-3"> @include('charges.partials.item-actions', [ 'charge' => $charge, 'canSign' => true, ]) </div> </div> </div> @empty <div class="text-center text-muted py-4">No hay cargos de resoluciones.</div> @endforelse </div> null {{-- VISTA ESCRITORIO --}} <div class="table-responsive d-none d-md-block"> <table class="table align-middle table-hover mb-0"> callback null null false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\9950652d1e1370f0a05e8d8b1308af59.php string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/9950652d1e1370f0a05e8d8b1308af59.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/9950652d1e1370f0a05e8d8b1308af59.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/partials/lists/resolution.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false C:\laragon\www\Qilqana\resources\views\charges\partials\dashboard.blade.php 127 require null </button> </li> <li class="nav-item" role="presentation"> <button class="nav-link d-flex align-items-center gap-2" id="created-tab" data-bs-toggle="tab" data-bs-target="#created-tab-pane" type="button" role="tab" aria-controls="created-tab-pane" aria-selected="false"> Creados <span class="badge bg-secondary ms-1">{{ $createdTotal }}</span> </button> </li> <li class="nav-item" role="presentation"> <button class="nav-link d-flex align-items-center gap-2" id="sent-tab" data-bs-toggle="tab" data-bs-target="#sent-tab-pane" type="button" role="tab" aria-controls="sent-tab-pane" aria-selected="false"> Enviados <span class="badge bg-secondary ms-1">{{ $sentTotal }}</span> </button> </li> </ul> null <div class="tab-content" id="charges-tabs-content"> @if ($canViewResolutionCharges) @include('charges.partials.lists.resolution', ['active' => true]) @endif null @include('charges.partials.lists.received', ['active' => !$canViewResolutionCharges]) null @include('charges.partials.lists.created') null @include('charges.partials.lists.sent') </div> null callback null null false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\5ad9442a6a0a540f7d994a78d05830d2.php string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/5ad9442a6a0a540f7d994a78d05830d2.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/5ad9442a6a0a540f7d994a78d05830d2.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/partials/dashboard.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false C:\laragon\www\Qilqana\resources\views\charges\index.blade.php 42 require null <h5 class="mb-2">Errores durante la importacion:</h5> <ul class="mb-0"> @foreach (session('errores') as $error) <li>{{ $error }}</li> @endforeach </ul> </div> @endif null @if (session('success')) <div class="alert alert-success shadow-sm"> {{ session('success') }} </div> @endif <div id="charges-dashboard" data-refresh-interval="{{ $refreshIntervalSeconds ?? 5 }}" data-refresh-url="{{ route('charges.refresh') }}"> @include('charges.partials.dashboard') </div> </div> {{-- Formularios de crear cargos --}} @include('charges.forms.create') null {{-- Formularios de editar cargos --}} @include('charges.forms.edit') null {{-- Formularios de firmar cargos --}} @include('charges.forms.sign') null {{-- Formularios de rechazar cargos --}} @include('charges.forms.reject') null callback null null false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\15d308017064a4a142ff7af4cc62d614.php string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/15d308017064a4a142ff7af4cc62d614.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/15d308017064a4a142ff7af4cc62d614.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/index.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Response.php 69 setContent Illuminate\Http\Response // from routes that will be automatically transformed to their JSON form. if ($this->shouldBeJson($content)) { $this->header('Content-Type', 'application/json'); null $content = $this->morphToJson($content); null if ($content === false) { throw new InvalidArgumentException(json_last_error_msg()); } } null // If this content implements the "Renderable" interface then we will call the // render method on the object so we will avoid any "__toString" exceptions // that might be thrown and have their errors obscured by PHP's handling. elseif ($content instanceof Renderable) { $content = $content->render(); } null parent::setContent($content); null return $this; } null /** * Determine if the given content should be turned into JSON. * * @param  mixed  $content * @return bool */ protected function shouldBeJson($content) callback null null false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Response.php 35 __construct Illuminate\Http\Response null /** * Create a new HTTP response. * * @param  mixed  $content * @param  int  $status * @param  array  $headers * @return void * * @throws \InvalidArgumentException */ public function __construct($content = '', $status = 200, array $headers = []) { $this->headers = new ResponseHeaderBag($headers); null $this->setContent($content); $this->setStatusCode($status); $this->setProtocolVersion('1.0'); } null /** * Set the content on the response. * * @param  mixed  $content * @return $this * * @throws \InvalidArgumentException */ public function setContent(mixed $content): static { null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 918 toResponse Illuminate\Routing\Router if ($response instanceof PsrResponseInterface) { $response = (new HttpFoundationFactory)->createResponse($response); } elseif ($response instanceof Model && $response->wasRecentlyCreated) { $response = new JsonResponse($response, 201); } elseif ($response instanceof Stringable) { $response = new Response($response->__toString(), 200, ['Content-Type' => 'text/html']); } elseif (! $response instanceof SymfonyResponse && ($response instanceof Arrayable || $response instanceof Jsonable || $response instanceof ArrayObject || $response instanceof JsonSerializable || $response instanceof stdClass || is_array($response))) { $response = new JsonResponse($response); } elseif (! $response instanceof SymfonyResponse) { $response = new Response($response, 200, ['Content-Type' => 'text/html']); } null if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) { $response->setNotModified(); } null return $response->prepare($request); } null /** * Substitute the route bindings onto the route. * * @param  \Illuminate\Routing\Route  $route * @return \Illuminate\Routing\Route null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 885 prepareResponse Illuminate\Routing\Router { return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all(); } null /** * Create a response instance from the given value. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { $this->events->dispatch(new PreparingResponse($request, $response)); null return tap(static::toResponse($request, $response), function ($response) use ($request) { $this->events->dispatch(new ResponsePrepared($request, $response)); }); } null /** * Static version of prepareResponse. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public static function toResponse($request, $response) { if ($response instanceof Responsable) { null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 805 Illuminate\Routing\{closure} Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 144 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline return $this->then(function ($passable) { return $passable; }); } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\boost\src\Middleware\InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Middleware\SubstituteBindings.php 50 handle Illuminate\Routing\Middleware\SubstituteBindings public function __construct(Registrar $router) { $this->router = $router; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { try { $this->router->substituteBindings($route = $request->route()); null $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Auth\Middleware\Authenticate.php 57 handle Illuminate\Auth\Middleware\Authenticate null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @param  string[]  ...$guards * @return mixed * * @throws \Illuminate\Auth\AuthenticationException */ public function handle($request, Closure $next, ...$guards) { $this->authenticate($request, $guards); null return $next($request); } null /** * Determine if the user is logged in to any of the given guards. * * @param  \Illuminate\Http\Request  $request * @param  array  $guards * @return void * * @throws \Illuminate\Auth\AuthenticationException */ protected function authenticate($request, array $guards) { if (empty($guards)) { arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false guards  array false true false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\VerifyCsrfToken.php 78 handle Illuminate\Foundation\Http\Middleware\VerifyCsrfToken * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Middleware\ShareErrorsFromSession.php 49 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // Putting the errors in the view for every view allows the developer to just // assume that some errors are always available, which is convenient since // they don't have to continually run checks for the presence of errors. null return $next($request); } } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php 121 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // Again, if the session has been configured we will need to close out the session // so that the attributes may be persisted to some storage medium. We will also // add the session identifier cookie to the application response headers now. $this->saveSession($request); null return $response; } null /** arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php 64 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * Handle the given request within session state. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleRequestWhileBlocking(Request $request, $session, Closure $next) { if (! $request->route() instanceof Route) { return; request GET http://qilqana.test/charges Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse.php 37 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies * @return void */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Cookie\Middleware\EncryptCookies.php 67 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * Decrypt the cookies on the request. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @return \Symfony\Component\HttpFoundation\Request */ protected function decrypt(Request $request) { foreach ($request->cookies as $key => $cookie) { if ($this->isDisabled($key)) { continue; } arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 119 then Illuminate\Pipeline\Pipeline return $this; } null /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null return $pipeline($this->passable); } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { return $this->then(function ($passable) { return $passable; }); } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 805 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php:805-807 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 784 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * Run the given route within a Stack "onion" instance. * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 748 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * Dispatch the request to a route and return the response. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request)); } null /** * Find the route matching a given request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Routing\Route */ protected function findRoute($request) { $this->events->dispatch(new Routing($request)); null $this->current = $route = $this->routes->match($request); null request GET http://qilqana.test/charges Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 737 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * Dispatch the request to a route and return the response. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request)); } null /** request GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 200 Illuminate\Foundation\Http\{closure} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * Call the terminate method on any terminable middleware. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Http\Response  $response * @return void */ public function terminate($request, $response) { $this->terminateMiddleware($request, $response); null request GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 144 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline return $this->then(function ($passable) { return $passable; }); } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TrimStrings.php 40 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { if (in_array($key, $this->except, true) || ! is_string($value)) { return $value; } request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ValidatePostSize.php 27 handle Illuminate\Foundation\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException; } null return $next($request); } null /** * Determine the server 'post_max_size' as bytes. * * @return int */ protected function getPostMaxSize() { if (is_numeric($postMaxSize = ini_get('post_max_size'))) { return (int) $postMaxSize; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance.php 99 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * Determine if the incoming request has a maintenance mode bypass cookie. * * @param  \Illuminate\Http\Request  $request * @param  array  $data * @return bool */ protected function hasValidBypassCookie($request, array $data) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Middleware\HandleCors.php 49 handle Illuminate\Http\Middleware\HandleCors { $this->container = $container; $this->cors = $cors; } null /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Middleware\TrustProxies.php 39 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * Sets the trusted proxies on the request. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function setTrustedProxyIpAddresses(Request $request) { $trustedIps = $this->proxies() ?: config('trustedproxy.proxies'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 119 then Illuminate\Pipeline\Pipeline return $this; } null /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null return $pipeline($this->passable); } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { return $this->then(function ($passable) { return $passable; }); } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Facade::clearResolvedInstance('request'); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php:197-201 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\public\index.php 51 [top] null | | Composer provides a convenient, automatically generated class loader for | this application. We just need to utilize it! We'll simply require it | into the script here so we don't need to manually load our classes. | */ null require __DIR__.'/../vendor/autoload.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request using | the application's HTTP kernel. Then, we will send the response back | to this client's browser, allowing them to enjoy our application. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() )->send(); null $kernel->terminate($request, $response); null  true http://qilqana.test/charges null GET Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0    qilqana.test keep-alive max-age=0 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 http://qilqana.test/charges gzip, deflate es-419,es;q=0.9,en;q=0.8,ja;q=0.7,th;q=0.6,ko;q=0.5 <CENSORED> 1|LMdigGaD4gInPG7UFT4HNiNSjzg9MiGxyUL8xYezcWkTiJpCTMFS5tsxjGPG|$2y$12$WbJyS7sgPdXNvaihX7CNXe9HlrIjg9GQx9pfIqWmY6LTNrDNKzzEa u1GnxmSu44kIW5DOHkL8h3Ritba0zDkFribOr0JX KE8nAtbHhTVpq7GkZNPabTwwlapPT2QsgK4zaLQn u1GnxmSu44kIW5DOHkL8h3Ritba0zDkFribOr0JX 1 http://qilqana.test/charges   charges.index  App\Http\Controllers\ChargeController@index web auth 1 ADMIN ADMIN 000000000 2026-04-20T00:59:38.000000Z 2026-04-20T00:59:38.000000Z 1 ADMINISTRADOR web 2026-04-20T00:59:38.000000Z 2026-04-20T00:59:38.000000Z App\Models\User 1 1 C:\laragon\www\Qilqana\resources\views\charges\partials\item-actions.blade.php <pre class=sf-dump id=sf-dump-2038298193 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\ViewErrorBag</span> {<a class=sf-dump-ref>#1363</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">bags</span>: []
</samp>}
</pre><script>Sfdump("sf-dump-2038298193", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1954721960 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1486</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-1954721960", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1313394630 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1522</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-1313394630", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-828577261 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1545</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-828577261", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-892785481 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1454</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:2</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1437</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
    <span class=sf-dump-index>1</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1438</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-892785481", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1185025995 data-indent-pad="  "><span class=sf-dump-num>2</span>
</pre><script>Sfdump("sf-dump-1185025995", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-47298517 data-indent-pad="  "><span class=sf-dump-num>2</span>
</pre><script>Sfdump("sf-dump-47298517", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-668418652 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-668418652", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1579786610 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1555</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\User
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">User</span></span> {<a class=sf-dump-ref>#1556</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="5 characters">users</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: []
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: <span class=sf-dump-note>array:2</span> [ &#8230;2]
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:4</span> [ &#8230;4]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">rememberTokenName</span>: "<span class=sf-dump-str title="14 characters">remember_token</span>"
      #<span class=sf-dump-protected title="Protected property">accessToken</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">roleClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">permissionClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardPermissionsIndex</span>: <span class=sf-dump-const title="Uninitialized property">? array</span>
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-1579786610", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-985608249 data-indent-pad="  "><span class=sf-dump-note>array:1</span> [<samp data-depth=1 class=sf-dump-expanded>
  <span class=sf-dump-index>0</span> => "<span class=sf-dump-str title="4 characters">2026</span>"
</samp>]
</pre><script>Sfdump("sf-dump-985608249", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1158611231 data-indent-pad="  "><span class=sf-dump-num>5</span>
</pre><script>Sfdump("sf-dump-1158611231", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1103589455 data-indent-pad="  "><span class=sf-dump-const>true</span>
</pre><script>Sfdump("sf-dump-1103589455", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1856669333 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-1856669333", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1096668234 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-1096668234", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1740267126 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-1740267126", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-2057906800 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-2057906800", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-824476377 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-824476377", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1009313141 data-indent-pad="  "><span class=sf-dump-num>1</span>
</pre><script>Sfdump("sf-dump-1009313141", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-92075967 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1603</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-92075967", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-2086217830 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-2086217830", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-2140026815 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-2140026815", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1649280705 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1649280705", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1232960921 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1232960921", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1921467671 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1921467671", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-198462471 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-198462471", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-977217175 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-977217175", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-143273941 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-143273941", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-527068401 data-indent-pad="  "><span class=sf-dump-const>true</span>
</pre><script>Sfdump("sf-dump-527068401", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-2136035704 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1454</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:2</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1437</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
    <span class=sf-dump-index>1</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1438</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-2136035704", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1273729847 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-1273729847", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-506186273 data-indent-pad="  ">{<a class=sf-dump-ref>#1605</a><samp data-depth=1 class=sf-dump-expanded>
  +"<span class=sf-dump-public title="Runtime added dynamic property">iteration</span>": <span class=sf-dump-num>1</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">index</span>": <span class=sf-dump-num>0</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">remaining</span>": <span class=sf-dump-num>1</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">count</span>": <span class=sf-dump-num>2</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">first</span>": <span class=sf-dump-const>true</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">last</span>": <span class=sf-dump-const>false</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">odd</span>": <span class=sf-dump-const>true</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">even</span>": <span class=sf-dump-const>false</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">depth</span>": <span class=sf-dump-num>1</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">parent</span>": <span class=sf-dump-const>null</span>
</samp>}
</pre><script>Sfdump("sf-dump-506186273", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-822158153 data-indent-pad="  "><span class=sf-dump-const>false</span>
</pre><script>Sfdump("sf-dump-822158153", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1527198797 data-indent-pad="  "><span class=sf-dump-note>App\Models\Charge</span> {<a class=sf-dump-ref>#1437</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
  #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
  #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
  #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
  +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
  #<span class=sf-dump-protected title="Protected property">with</span>: []
  #<span class=sf-dump-protected title="Protected property">withCount</span>: []
  +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
  +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
  +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>id</span>" => <span class=sf-dump-num>2</span>
    "<span class=sf-dump-key>n_charge</span>" => "<span class=sf-dump-str>2</span>"
    "<span class=sf-dump-key>asunto</span>" => "<span class=sf-dump-str title="6 characters">asunto</span>"
    "<span class=sf-dump-key>charge_period</span>" => "<span class=sf-dump-str title="4 characters">2026</span>"
    "<span class=sf-dump-key>document_date</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>tipo_interesado</span>" => "<span class=sf-dump-str title="15 characters">Persona Natural</span>"
    "<span class=sf-dump-key>user_id</span>" => <span class=sf-dump-num>1</span>
    "<span class=sf-dump-key>natural_person_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>legal_entity_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>resolucion_id</span>" => <span class=sf-dump-num>230642</span>
    "<span class=sf-dump-key>created_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
    "<span class=sf-dump-key>updated_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>id</span>" => <span class=sf-dump-num>2</span>
    "<span class=sf-dump-key>n_charge</span>" => "<span class=sf-dump-str>2</span>"
    "<span class=sf-dump-key>asunto</span>" => "<span class=sf-dump-str title="6 characters">asunto</span>"
    "<span class=sf-dump-key>charge_period</span>" => "<span class=sf-dump-str title="4 characters">2026</span>"
    "<span class=sf-dump-key>document_date</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>tipo_interesado</span>" => "<span class=sf-dump-str title="15 characters">Persona Natural</span>"
    "<span class=sf-dump-key>user_id</span>" => <span class=sf-dump-num>1</span>
    "<span class=sf-dump-key>natural_person_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>legal_entity_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>resolucion_id</span>" => <span class=sf-dump-num>230642</span>
    "<span class=sf-dump-key>created_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
    "<span class=sf-dump-key>updated_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">changes</span>: []
  #<span class=sf-dump-protected title="Protected property">casts</span>: []
  #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
  #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
  #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
  #<span class=sf-dump-protected title="Protected property">appends</span>: []
  #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
  #<span class=sf-dump-protected title="Protected property">observables</span>: []
  #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>user</span>" => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\User
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">User</span></span> {<a class=sf-dump-ref>#1442</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="5 characters">users</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: []
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: <span class=sf-dump-note>array:2</span> [ &#8230;2]
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:4</span> [ &#8230;4]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">rememberTokenName</span>: "<span class=sf-dump-str title="14 characters">remember_token</span>"
      #<span class=sf-dump-protected title="Protected property">accessToken</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">roleClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">permissionClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardPermissionsIndex</span>: <span class=sf-dump-const title="Uninitialized property">? array</span>
    </samp>}
    "<span class=sf-dump-key>naturalPerson</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>legalEntity</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>signature</span>" => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Signature
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Signature</span></span> {<a class=sf-dump-ref>#1457</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="10 characters">signatures</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:15</span> [ &#8230;15]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:15</span> [ &#8230;15]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:2</span> [ &#8230;2]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
    "<span class=sf-dump-key>resolucion</span>" => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Resolucion
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Resolucion</span></span> {<a class=sf-dump-ref>#1469</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="11 characters">resolucions</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: []
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:7</span> [ &#8230;7]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">dates</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">touches</span>: []
  +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
  +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">hidden</span>: []
  #<span class=sf-dump-protected title="Protected property">visible</span>: []
  #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => "<span class=sf-dump-str title="8 characters">n_charge</span>"
    <span class=sf-dump-index>1</span> => "<span class=sf-dump-str title="13 characters">charge_period</span>"
    <span class=sf-dump-index>2</span> => "<span class=sf-dump-str title="13 characters">document_date</span>"
    <span class=sf-dump-index>3</span> => "<span class=sf-dump-str title="7 characters">user_id</span>"
    <span class=sf-dump-index>4</span> => "<span class=sf-dump-str title="13 characters">resolucion_id</span>"
    <span class=sf-dump-index>5</span> => "<span class=sf-dump-str title="15 characters">tipo_interesado</span>"
    <span class=sf-dump-index>6</span> => "<span class=sf-dump-str title="17 characters">natural_person_id</span>"
    <span class=sf-dump-index>7</span> => "<span class=sf-dump-str title="15 characters">legal_entity_id</span>"
    <span class=sf-dump-index>8</span> => "<span class=sf-dump-str title="6 characters">asunto</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => "<span class=sf-dump-str>*</span>"
  </samp>]
</samp>}
</pre><script>Sfdump("sf-dump-1527198797", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1982047938 data-indent-pad="  "><span class=sf-dump-const>true</span>
</pre><script>Sfdump("sf-dump-1982047938", {"maxDepth":3,"maxStringLength":160})</script> 8.2.10 10.50.2 es false true local   select * from `sessions` where `id` = ? limit 1 22.48 mysql KE8nAtbHhTVpq7GkZNPabTwwlapPT2QsgK4zaLQn 1777124017.9567 select * from `users` where `id` = ? limit 1 0.82 mysql 1 1777124017.9674 select `value` from `settings` where `key` = ? limit 1 0.66 mysql charge_period 1777124017.9713 select `roles`.*, `model_has_roles`.`model_id` as `pivot_model_id`, `model_has_roles`.`role_id` as `pivot_role_id`, `model_has_roles`.`model_type` as `pivot_model_type` from `roles` inner join `model_has_roles` on `roles`.`id` = `model_has_roles`.`role_id` where `model_has_roles`.`model_id` in (1) and `model_has_roles`.`model_type` = ? 1.02 mysql App\Models\User 1777124017.9791 select * from `charges` where `resolucion_id` is not null and (`charge_period` = ? or `charge_period` is null) order by `created_at` desc 0.86 mysql 2026 1777124017.982 select * from `users` where `users`.`id` in (1) 0.63 mysql  1777124017.9839 select * from `signatures` where `signatures`.`charge_id` in (1, 2) 0.93 mysql  1777124017.9877 select * from `users` where `users`.`id` in (1) 0.83 mysql  1777124017.9892 select * from `users` where `users`.`id` in (1) 0.58 mysql  1777124017.9901 select * from `resolucions` where `resolucions`.`id` in (224071, 230642) 0.67 mysql  1777124017.9912 select * from `charges` where `user_id` = ? and `resolucion_id` is null and (`charge_period` = ? or `charge_period` is null) order by `created_at` desc 0.78 mysql 1 2026 1777124017.9924 select * from `charges` where `resolucion_id` is null and exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `assigned_to` = ?) and `tipo_interesado` not in (?, ?) and (`charge_period` = ? or `charge_period` is null) and exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` != ?) order by `created_at` desc 0.96 mysql 1 Persona Juridica Persona Natural 2026 rechazado 1777124017.9941 select * from `charges` where `user_id` = ? and `resolucion_id` is null and `tipo_interesado` in (?, ?) and (`charge_period` = ? or `charge_period` is null) order by `created_at` desc 0.76 mysql 1 Persona Juridica Persona Natural 2026 1777124017.9952 select count(*) as aggregate from `charges` where exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` = ?) 0.77 mysql firmado 1777124017.9964 select count(*) as aggregate from `charges` where exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` = ?) 0.7 mysql pendiente 1777124017.9974 select * from `users` where `id` != ? order by `name` asc 0.82 mysql 1 1777124017.9984 select distinct `charge_period` from `charges` where `charge_period` is not null order by `charge_period` desc 0.68 mysql  1777124017.9993 select `value` from `settings` where `key` = ? limit 1 1.22 mysql charges_refresh_interval 1777124018.0007 local null null C:\laragon\www\Qilqana null 20bc5bcf-7772-4b30-94a8-6db26ac96ef5 null null Laravel Client PHP 10.50.2 8.2.10 ErrorException 1777124018 Attempt to read property "dni" on null    C:\laragon\www\Qilqana\app\Models\Charge.php 68 handleError Illuminate\Foundation\Bootstrap\HandleExceptions { return $this->hasOne(Signature::class); } null /* Accessors para optimizar vistas */ null public function getInteresadoLabelAttribute(): string { switch ($this->tipo_interesado) { case 'Persona Juridica': return $this->legalEntity?->razon_social ?: $this->legalEntity?->ruc ?: '---'; case 'Persona Natural': $person = $this->naturalPerson; $fullName = trim(($person->nombres ?? '').' '.($person->apellido_paterno ?? '').' '.($person->apellido_materno ?? '')); null return $fullName !== '' ? $fullName : ($person->dni ?: '---'); case 'Trabajador UGEL': return $this->user?->name.' '.$this->user?->last_name ?: '---'; default: return '---'; } } null public function getHasSignatureAttribute(): bool { return (bool) ($this->signature?->signature_root); } null public function getHasCartaPoderAttribute(): bool {  true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Bootstrap\HandleExceptions.php 255 Illuminate\Foundation\Bootstrap\{closure} Illuminate\Foundation\Bootstrap\HandleExceptions * @return \Symfony\Component\ErrorHandler\Error\FatalError */ protected function fatalErrorFromPhpError(array $error, $traceOffset = null) { return new FatalError($error['message'], 0, $error, $traceOffset); } null /** * Forward a method call to the given method if an application instance exists. * * @return callable */ protected function forwardsTo($method) { return fn (...$arguments) => static::$app ? $this->{$method}(...$arguments) : false; } null /** * Determine if the error level is a deprecation. * * @param  int  $level * @return bool */ protected function isDeprecation($level) { return in_array($level, [E_DEPRECATED, E_USER_DEPRECATED]); } null level 2 int false false false message Attempt to read property "dni" on null string false false false file C:\laragon\www\Qilqana\app\Models\Charge.php string false false false line 68 int false false false false C:\laragon\www\Qilqana\app\Models\Charge.php 68 getInteresadoLabelAttribute App\Models\Charge { return $this->hasOne(Signature::class); } null /* Accessors para optimizar vistas */ null public function getInteresadoLabelAttribute(): string { switch ($this->tipo_interesado) { case 'Persona Juridica': return $this->legalEntity?->razon_social ?: $this->legalEntity?->ruc ?: '---'; case 'Persona Natural': $person = $this->naturalPerson; $fullName = trim(($person->nombres ?? '').' '.($person->apellido_paterno ?? '').' '.($person->apellido_materno ?? '')); null return $fullName !== '' ? $fullName : ($person->dni ?: '---'); case 'Trabajador UGEL': return $this->user?->name.' '.$this->user?->last_name ?: '---'; default: return '---'; } } null public function getHasSignatureAttribute(): bool { return (bool) ($this->signature?->signature_root); } null public function getHasCartaPoderAttribute(): bool { arg0 2 int false false false arg1 Attempt to read property "dni" on null string false false false arg2 C:\laragon\www\Qilqana\app\Models\Charge.php string false false false arg3 68 int false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 658 mutateAttribute Illuminate\Database\Eloquent\Model return static::$getAttributeMutatorCache[get_class($this)][$key] = false; } null return static::$getAttributeMutatorCache[get_class($this)][$key] = is_callable($this->{Str::camel($key)}()->get); } null /** * Get the value of an attribute using its mutator. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function mutateAttribute($key, $value) { return $this->{'get'.Str::studly($key).'Attribute'}($value); } null /** * Get the value of an "Attribute" return type marked attribute using its mutator. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function mutateAttributeMarkedAttribute($key, $value) { if (array_key_exists($key, $this->attributeCastCache)) { return $this->attributeCastCache[$key]; } arg0 null null false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 2124 transformModelValue Illuminate\Database\Eloquent\Model } null /** * Transform a raw model value using mutators, casts, etc. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transformModelValue($key, $value) { // If the attribute has a get mutator, we will call that then return what // it returns as the value, which is useful for transforming values on // retrieval from the model to a form that is more useful for usage. if ($this->hasGetMutator($key)) { return $this->mutateAttribute($key, $value); } elseif ($this->hasAttributeGetMutator($key)) { return $this->mutateAttributeMarkedAttribute($key, $value); } null // If the attribute exists within the cast array, we will convert it to // an appropriate native PHP type dependent upon the associated value // given with the key in the pair. Dayle made this comment line up. if ($this->hasCast($key)) { if (static::preventsAccessingMissingAttributes() && ! array_key_exists($key, $this->attributes) && ($this->isEnumCastable($key) || in_array($this->getCastType($key), static::$primitiveCastTypes))) { $this->throwMissingAttributeExceptionIfApplicable($key); } key interesado_label string false false false value null null false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 489 getAttributeValue Illuminate\Database\Eloquent\Model null throw new MissingAttributeException($this, $key); } null return null; } null /** * Get a plain attribute (not a relationship). * * @param  string  $key * @return mixed */ public function getAttributeValue($key) { return $this->transformModelValue($key, $this->getAttributeFromArray($key)); } null /** * Get an attribute from the $attributes array. * * @param  string  $key * @return mixed */ protected function getAttributeFromArray($key) { return $this->getAttributes()[$key] ?? null; } null /** key interesado_label string false false false value null null false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 443 getAttribute Illuminate\Database\Eloquent\Model */ public function getAttribute($key) { if (! $key) { return; } null // If the attribute exists in the attribute array or has a "get" mutator we will // get the attribute's value. Otherwise, we will proceed as if the developers // are asking for a relationship's value. This covers both types of values. if (array_key_exists($key, $this->attributes) || array_key_exists($key, $this->casts) || $this->hasGetMutator($key) || $this->hasAttributeMutator($key) || $this->isClassCastable($key)) { return $this->getAttributeValue($key); } null // Here we will determine if the model base class itself contains this given key // since we don't want to treat any of those methods as relationships because // they are all intended as helper methods and none of these are relations. if (method_exists(self::class, $key)) { return $this->throwMissingAttributeExceptionIfApplicable($key); } null return $this->isRelation($key) || $this->relationLoaded($key) ? $this->getRelationValue($key) : $this->throwMissingAttributeExceptionIfApplicable($key); } null key interesado_label string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Model.php 2227 __get Illuminate\Database\Eloquent\Model * @return string */ public function broadcastChannel() { return str_replace('\\', '.', get_class($this)).'.'.$this->getKey(); } null /** * Dynamically retrieve attributes on the model. * * @param  string  $key * @return mixed */ public function __get($key) { return $this->getAttribute($key); } null /** * Dynamically set attributes on the model. * * @param  string  $key * @param  mixed  $value * @return void */ public function __set($key, $value) { $this->setAttribute($key, $value); } null key interesado_label string false false false false C:\laragon\www\Qilqana\resources\views\charges\partials\item-actions.blade.php 40 require null <span class="material-symbols-outlined">block</span> </button> @endif null @include('charges.forms.delete', [ 'charge' => $charge, 'disabled' => ($charge->signature?->signature_status !== 'pendiente' && !Auth::user()->hasRole('ADMINISTRADOR')), ]) </div> null <div class="mt-1"> <button type="button" class="btn btn-outline-secondary btn-sm btn-view-charge-details" title="Ver detalles" data-charge-id="{{ $charge->id }}" data-n-charge="{{ $charge->n_charge }}" data-interesado="{{ $charge->interesado_label }}" data-tipo="{{ $charge->tipo_interesado }}" data-asunto="{{ $charge->asunto }}" data-fecha="{{ $charge->document_date ? \Carbon\Carbon::parse($charge->document_date)->format('d/m/Y') : '---' }}" data-user="{{ $charge->user?->name }} {{ $charge->user?->last_name }}" data-status="{{ ucfirst($charge->signature?->signature_status ?? 'pendiente') }}" data-has-signature="{{ $charge->has_signature ? '1' : '0' }}" data-signature-url="{{ route('charges.file.signature', $charge) }}" data-signer="{{ $charge->signature?->signer?->name ?? '' }} {{ $charge->signature?->signer?->last_name ?? '' }}" data-titularidad="{{ $charge->signature?->titularidad ? '1' : '0' }}" data-parentesco="{{ $charge->signature?->parentesco ?? '' }}" data-titular-name="{{ $charge->resolucion?->nombres_apellidos ?? $charge->naturalPerson?->full_name ?? '' }}" data-has-evidence="{{ $charge->has_evidence ? '1' : '0' }}" data-evidence-url="{{ route('charges.file.evidence', $charge) }}" data-has-carta-poder="{{ $charge->has_carta_poder ? '1' : '0' }}" key interesado_label string false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\aee3964602ead821ce0538ab38b5b82c.php string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/aee3964602ead821ce0538ab38b5b82c.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/aee3964602ead821ce0538ab38b5b82c.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/partials/item-actions.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false C:\laragon\www\Qilqana\resources\views\charges\partials\lists\resolution.blade.php 74 require null <div class="d-flex justify-content-between align-items-start gap-2"> <div> <div class="small text-muted">Cargo #{{ $charge->n_charge }}</div> <div class="fw-semibold">RD: {{ $charge->resolucion?->rd }}</div> <div class="small text-muted">{{ $charge->resolucion?->periodo }}</div> </div> @include('charges.partials.status-badge', [ 'status' => $charge->signature?->signature_status, ]) </div> <div class="mt-2"> <div class="small text-muted">Interesado: {{ $charge->resolucion?->nombres_apellidos }} </div> </div> <div class="mt-3"> @include('charges.partials.item-actions', [ 'charge' => $charge, 'canSign' => true, ]) </div> </div> </div> @empty <div class="text-center text-muted py-4">No hay cargos de resoluciones.</div> @endforelse </div> null {{-- VISTA ESCRITORIO --}} <div class="table-responsive d-none d-md-block"> <table class="table align-middle table-hover mb-0"> callback null null false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\9950652d1e1370f0a05e8d8b1308af59.php string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/9950652d1e1370f0a05e8d8b1308af59.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/9950652d1e1370f0a05e8d8b1308af59.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/partials/lists/resolution.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false C:\laragon\www\Qilqana\resources\views\charges\partials\dashboard.blade.php 127 require null </button> </li> <li class="nav-item" role="presentation"> <button class="nav-link d-flex align-items-center gap-2" id="created-tab" data-bs-toggle="tab" data-bs-target="#created-tab-pane" type="button" role="tab" aria-controls="created-tab-pane" aria-selected="false"> Creados <span class="badge bg-secondary ms-1">{{ $createdTotal }}</span> </button> </li> <li class="nav-item" role="presentation"> <button class="nav-link d-flex align-items-center gap-2" id="sent-tab" data-bs-toggle="tab" data-bs-target="#sent-tab-pane" type="button" role="tab" aria-controls="sent-tab-pane" aria-selected="false"> Enviados <span class="badge bg-secondary ms-1">{{ $sentTotal }}</span> </button> </li> </ul> null <div class="tab-content" id="charges-tabs-content"> @if ($canViewResolutionCharges) @include('charges.partials.lists.resolution', ['active' => true]) @endif null @include('charges.partials.lists.received', ['active' => !$canViewResolutionCharges]) null @include('charges.partials.lists.created') null @include('charges.partials.lists.sent') </div> null callback null null false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\5ad9442a6a0a540f7d994a78d05830d2.php string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/5ad9442a6a0a540f7d994a78d05830d2.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/5ad9442a6a0a540f7d994a78d05830d2.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/partials/dashboard.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false C:\laragon\www\Qilqana\resources\views\charges\index.blade.php 42 require null <h5 class="mb-2">Errores durante la importacion:</h5> <ul class="mb-0"> @foreach (session('errores') as $error) <li>{{ $error }}</li> @endforeach </ul> </div> @endif null @if (session('success')) <div class="alert alert-success shadow-sm"> {{ session('success') }} </div> @endif <div id="charges-dashboard" data-refresh-interval="{{ $refreshIntervalSeconds ?? 5 }}" data-refresh-url="{{ route('charges.refresh') }}"> @include('charges.partials.dashboard') </div> </div> {{-- Formularios de crear cargos --}} @include('charges.forms.create') null {{-- Formularios de editar cargos --}} @include('charges.forms.edit') null {{-- Formularios de firmar cargos --}} @include('charges.forms.sign') null {{-- Formularios de rechazar cargos --}} @include('charges.forms.reject') null callback null null false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\15d308017064a4a142ff7af4cc62d614.php string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/15d308017064a4a142ff7af4cc62d614.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/15d308017064a4a142ff7af4cc62d614.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/index.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Response.php 69 setContent Illuminate\Http\Response // from routes that will be automatically transformed to their JSON form. if ($this->shouldBeJson($content)) { $this->header('Content-Type', 'application/json'); null $content = $this->morphToJson($content); null if ($content === false) { throw new InvalidArgumentException(json_last_error_msg()); } } null // If this content implements the "Renderable" interface then we will call the // render method on the object so we will avoid any "__toString" exceptions // that might be thrown and have their errors obscured by PHP's handling. elseif ($content instanceof Renderable) { $content = $content->render(); } null parent::setContent($content); null return $this; } null /** * Determine if the given content should be turned into JSON. * * @param  mixed  $content * @return bool */ protected function shouldBeJson($content) callback null null false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Response.php 35 __construct Illuminate\Http\Response null /** * Create a new HTTP response. * * @param  mixed  $content * @param  int  $status * @param  array  $headers * @return void * * @throws \InvalidArgumentException */ public function __construct($content = '', $status = 200, array $headers = []) { $this->headers = new ResponseHeaderBag($headers); null $this->setContent($content); $this->setStatusCode($status); $this->setProtocolVersion('1.0'); } null /** * Set the content on the response. * * @param  mixed  $content * @return $this * * @throws \InvalidArgumentException */ public function setContent(mixed $content): static { null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 918 toResponse Illuminate\Routing\Router if ($response instanceof PsrResponseInterface) { $response = (new HttpFoundationFactory)->createResponse($response); } elseif ($response instanceof Model && $response->wasRecentlyCreated) { $response = new JsonResponse($response, 201); } elseif ($response instanceof Stringable) { $response = new Response($response->__toString(), 200, ['Content-Type' => 'text/html']); } elseif (! $response instanceof SymfonyResponse && ($response instanceof Arrayable || $response instanceof Jsonable || $response instanceof ArrayObject || $response instanceof JsonSerializable || $response instanceof stdClass || is_array($response))) { $response = new JsonResponse($response); } elseif (! $response instanceof SymfonyResponse) { $response = new Response($response, 200, ['Content-Type' => 'text/html']); } null if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) { $response->setNotModified(); } null return $response->prepare($request); } null /** * Substitute the route bindings onto the route. * * @param  \Illuminate\Routing\Route  $route * @return \Illuminate\Routing\Route null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 885 prepareResponse Illuminate\Routing\Router { return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all(); } null /** * Create a response instance from the given value. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { $this->events->dispatch(new PreparingResponse($request, $response)); null return tap(static::toResponse($request, $response), function ($response) use ($request) { $this->events->dispatch(new ResponsePrepared($request, $response)); }); } null /** * Static version of prepareResponse. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public static function toResponse($request, $response) { if ($response instanceof Responsable) { null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 805 Illuminate\Routing\{closure} Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 144 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline return $this->then(function ($passable) { return $passable; }); } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\boost\src\Middleware\InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Middleware\SubstituteBindings.php 50 handle Illuminate\Routing\Middleware\SubstituteBindings public function __construct(Registrar $router) { $this->router = $router; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { try { $this->router->substituteBindings($route = $request->route()); null $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Auth\Middleware\Authenticate.php 57 handle Illuminate\Auth\Middleware\Authenticate null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @param  string[]  ...$guards * @return mixed * * @throws \Illuminate\Auth\AuthenticationException */ public function handle($request, Closure $next, ...$guards) { $this->authenticate($request, $guards); null return $next($request); } null /** * Determine if the user is logged in to any of the given guards. * * @param  \Illuminate\Http\Request  $request * @param  array  $guards * @return void * * @throws \Illuminate\Auth\AuthenticationException */ protected function authenticate($request, array $guards) { if (empty($guards)) { arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false guards  array false true false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\VerifyCsrfToken.php 78 handle Illuminate\Foundation\Http\Middleware\VerifyCsrfToken * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Middleware\ShareErrorsFromSession.php 49 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // Putting the errors in the view for every view allows the developer to just // assume that some errors are always available, which is convenient since // they don't have to continually run checks for the presence of errors. null return $next($request); } } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php 121 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // Again, if the session has been configured we will need to close out the session // so that the attributes may be persisted to some storage medium. We will also // add the session identifier cookie to the application response headers now. $this->saveSession($request); null return $response; } null /** arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php 64 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * Handle the given request within session state. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleRequestWhileBlocking(Request $request, $session, Closure $next) { if (! $request->route() instanceof Route) { return; request GET http://qilqana.test/charges Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse.php 37 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies * @return void */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Cookie\Middleware\EncryptCookies.php 67 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * Decrypt the cookies on the request. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @return \Symfony\Component\HttpFoundation\Request */ protected function decrypt(Request $request) { foreach ($request->cookies as $key => $cookie) { if ($this->isDisabled($key)) { continue; } arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 119 then Illuminate\Pipeline\Pipeline return $this; } null /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null return $pipeline($this->passable); } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { return $this->then(function ($passable) { return $passable; }); } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 805 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php:805-807 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 784 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * Run the given route within a Stack "onion" instance. * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 748 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * Dispatch the request to a route and return the response. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request)); } null /** * Find the route matching a given request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Routing\Route */ protected function findRoute($request) { $this->events->dispatch(new Routing($request)); null $this->current = $route = $this->routes->match($request); null request GET http://qilqana.test/charges Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 737 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * Dispatch the request to a route and return the response. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request)); } null /** request GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 200 Illuminate\Foundation\Http\{closure} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * Call the terminate method on any terminable middleware. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Http\Response  $response * @return void */ public function terminate($request, $response) { $this->terminateMiddleware($request, $response); null request GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 144 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline return $this->then(function ($passable) { return $passable; }); } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TrimStrings.php 40 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { if (in_array($key, $this->except, true) || ! is_string($value)) { return $value; } request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ValidatePostSize.php 27 handle Illuminate\Foundation\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException; } null return $next($request); } null /** * Determine the server 'post_max_size' as bytes. * * @return int */ protected function getPostMaxSize() { if (is_numeric($postMaxSize = ini_get('post_max_size'))) { return (int) $postMaxSize; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance.php 99 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * Determine if the incoming request has a maintenance mode bypass cookie. * * @param  \Illuminate\Http\Request  $request * @param  array  $data * @return bool */ protected function hasValidBypassCookie($request, array $data) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Middleware\HandleCors.php 49 handle Illuminate\Http\Middleware\HandleCors { $this->container = $container; $this->cors = $cors; } null /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Middleware\TrustProxies.php 39 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * Sets the trusted proxies on the request. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function setTrustedProxyIpAddresses(Request $request) { $trustedIps = $this->proxies() ?: config('trustedproxy.proxies'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 119 then Illuminate\Pipeline\Pipeline return $this; } null /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null return $pipeline($this->passable); } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { return $this->then(function ($passable) { return $passable; }); } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Facade::clearResolvedInstance('request'); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php:197-201 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\public\index.php 51 [top] null | | Composer provides a convenient, automatically generated class loader for | this application. We just need to utilize it! We'll simply require it | into the script here so we don't need to manually load our classes. | */ null require __DIR__.'/../vendor/autoload.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request using | the application's HTTP kernel. Then, we will send the response back | to this client's browser, allowing them to enjoy our application. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() )->send(); null $kernel->terminate($request, $response); null  true http://qilqana.test/charges null GET Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0    qilqana.test keep-alive max-age=0 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 http://qilqana.test/charges gzip, deflate es-419,es;q=0.9,en;q=0.8,ja;q=0.7,th;q=0.6,ko;q=0.5 <CENSORED> 1|LMdigGaD4gInPG7UFT4HNiNSjzg9MiGxyUL8xYezcWkTiJpCTMFS5tsxjGPG|$2y$12$WbJyS7sgPdXNvaihX7CNXe9HlrIjg9GQx9pfIqWmY6LTNrDNKzzEa u1GnxmSu44kIW5DOHkL8h3Ritba0zDkFribOr0JX KE8nAtbHhTVpq7GkZNPabTwwlapPT2QsgK4zaLQn u1GnxmSu44kIW5DOHkL8h3Ritba0zDkFribOr0JX 1 http://qilqana.test/charges   charges.index  App\Http\Controllers\ChargeController@index web auth 1 ADMIN ADMIN 000000000 2026-04-20T00:59:38.000000Z 2026-04-20T00:59:38.000000Z 1 ADMINISTRADOR web 2026-04-20T00:59:38.000000Z 2026-04-20T00:59:38.000000Z App\Models\User 1 1 C:\laragon\www\Qilqana\resources\views\charges\partials\item-actions.blade.php <pre class=sf-dump id=sf-dump-2038298193 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\ViewErrorBag</span> {<a class=sf-dump-ref>#1363</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">bags</span>: []
</samp>}
</pre><script>Sfdump("sf-dump-2038298193", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1954721960 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1486</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-1954721960", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1313394630 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1522</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-1313394630", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-828577261 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1545</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-828577261", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-892785481 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1454</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:2</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1437</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
    <span class=sf-dump-index>1</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1438</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-892785481", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1185025995 data-indent-pad="  "><span class=sf-dump-num>2</span>
</pre><script>Sfdump("sf-dump-1185025995", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-47298517 data-indent-pad="  "><span class=sf-dump-num>2</span>
</pre><script>Sfdump("sf-dump-47298517", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-668418652 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-668418652", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1579786610 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1555</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\User
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">User</span></span> {<a class=sf-dump-ref>#1556</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="5 characters">users</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: []
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: <span class=sf-dump-note>array:2</span> [ &#8230;2]
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:4</span> [ &#8230;4]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">rememberTokenName</span>: "<span class=sf-dump-str title="14 characters">remember_token</span>"
      #<span class=sf-dump-protected title="Protected property">accessToken</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">roleClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">permissionClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardPermissionsIndex</span>: <span class=sf-dump-const title="Uninitialized property">? array</span>
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-1579786610", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-985608249 data-indent-pad="  "><span class=sf-dump-note>array:1</span> [<samp data-depth=1 class=sf-dump-expanded>
  <span class=sf-dump-index>0</span> => "<span class=sf-dump-str title="4 characters">2026</span>"
</samp>]
</pre><script>Sfdump("sf-dump-985608249", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1158611231 data-indent-pad="  "><span class=sf-dump-num>5</span>
</pre><script>Sfdump("sf-dump-1158611231", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1103589455 data-indent-pad="  "><span class=sf-dump-const>true</span>
</pre><script>Sfdump("sf-dump-1103589455", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1856669333 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-1856669333", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1096668234 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-1096668234", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1740267126 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-1740267126", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-2057906800 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-2057906800", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-824476377 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-824476377", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1009313141 data-indent-pad="  "><span class=sf-dump-num>1</span>
</pre><script>Sfdump("sf-dump-1009313141", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-92075967 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1603</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-92075967", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-2086217830 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-2086217830", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-2140026815 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-2140026815", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1649280705 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1649280705", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1232960921 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1232960921", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1921467671 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1921467671", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-198462471 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-198462471", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-977217175 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-977217175", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-143273941 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-143273941", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-527068401 data-indent-pad="  "><span class=sf-dump-const>true</span>
</pre><script>Sfdump("sf-dump-527068401", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-2136035704 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1454</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:2</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1437</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
    <span class=sf-dump-index>1</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1438</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-2136035704", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1273729847 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-1273729847", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-506186273 data-indent-pad="  ">{<a class=sf-dump-ref>#1605</a><samp data-depth=1 class=sf-dump-expanded>
  +"<span class=sf-dump-public title="Runtime added dynamic property">iteration</span>": <span class=sf-dump-num>1</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">index</span>": <span class=sf-dump-num>0</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">remaining</span>": <span class=sf-dump-num>1</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">count</span>": <span class=sf-dump-num>2</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">first</span>": <span class=sf-dump-const>true</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">last</span>": <span class=sf-dump-const>false</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">odd</span>": <span class=sf-dump-const>true</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">even</span>": <span class=sf-dump-const>false</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">depth</span>": <span class=sf-dump-num>1</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">parent</span>": <span class=sf-dump-const>null</span>
</samp>}
</pre><script>Sfdump("sf-dump-506186273", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-822158153 data-indent-pad="  "><span class=sf-dump-const>false</span>
</pre><script>Sfdump("sf-dump-822158153", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1527198797 data-indent-pad="  "><span class=sf-dump-note>App\Models\Charge</span> {<a class=sf-dump-ref>#1437</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
  #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
  #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
  #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
  +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
  #<span class=sf-dump-protected title="Protected property">with</span>: []
  #<span class=sf-dump-protected title="Protected property">withCount</span>: []
  +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
  +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
  +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>id</span>" => <span class=sf-dump-num>2</span>
    "<span class=sf-dump-key>n_charge</span>" => "<span class=sf-dump-str>2</span>"
    "<span class=sf-dump-key>asunto</span>" => "<span class=sf-dump-str title="6 characters">asunto</span>"
    "<span class=sf-dump-key>charge_period</span>" => "<span class=sf-dump-str title="4 characters">2026</span>"
    "<span class=sf-dump-key>document_date</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>tipo_interesado</span>" => "<span class=sf-dump-str title="15 characters">Persona Natural</span>"
    "<span class=sf-dump-key>user_id</span>" => <span class=sf-dump-num>1</span>
    "<span class=sf-dump-key>natural_person_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>legal_entity_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>resolucion_id</span>" => <span class=sf-dump-num>230642</span>
    "<span class=sf-dump-key>created_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
    "<span class=sf-dump-key>updated_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>id</span>" => <span class=sf-dump-num>2</span>
    "<span class=sf-dump-key>n_charge</span>" => "<span class=sf-dump-str>2</span>"
    "<span class=sf-dump-key>asunto</span>" => "<span class=sf-dump-str title="6 characters">asunto</span>"
    "<span class=sf-dump-key>charge_period</span>" => "<span class=sf-dump-str title="4 characters">2026</span>"
    "<span class=sf-dump-key>document_date</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>tipo_interesado</span>" => "<span class=sf-dump-str title="15 characters">Persona Natural</span>"
    "<span class=sf-dump-key>user_id</span>" => <span class=sf-dump-num>1</span>
    "<span class=sf-dump-key>natural_person_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>legal_entity_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>resolucion_id</span>" => <span class=sf-dump-num>230642</span>
    "<span class=sf-dump-key>created_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
    "<span class=sf-dump-key>updated_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">changes</span>: []
  #<span class=sf-dump-protected title="Protected property">casts</span>: []
  #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
  #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
  #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
  #<span class=sf-dump-protected title="Protected property">appends</span>: []
  #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
  #<span class=sf-dump-protected title="Protected property">observables</span>: []
  #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>user</span>" => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\User
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">User</span></span> {<a class=sf-dump-ref>#1442</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="5 characters">users</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: []
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: <span class=sf-dump-note>array:2</span> [ &#8230;2]
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:4</span> [ &#8230;4]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">rememberTokenName</span>: "<span class=sf-dump-str title="14 characters">remember_token</span>"
      #<span class=sf-dump-protected title="Protected property">accessToken</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">roleClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">permissionClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardPermissionsIndex</span>: <span class=sf-dump-const title="Uninitialized property">? array</span>
    </samp>}
    "<span class=sf-dump-key>naturalPerson</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>legalEntity</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>signature</span>" => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Signature
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Signature</span></span> {<a class=sf-dump-ref>#1457</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="10 characters">signatures</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:15</span> [ &#8230;15]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:15</span> [ &#8230;15]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:2</span> [ &#8230;2]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
    "<span class=sf-dump-key>resolucion</span>" => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Resolucion
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Resolucion</span></span> {<a class=sf-dump-ref>#1469</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="11 characters">resolucions</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: []
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:7</span> [ &#8230;7]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">dates</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">touches</span>: []
  +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
  +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">hidden</span>: []
  #<span class=sf-dump-protected title="Protected property">visible</span>: []
  #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => "<span class=sf-dump-str title="8 characters">n_charge</span>"
    <span class=sf-dump-index>1</span> => "<span class=sf-dump-str title="13 characters">charge_period</span>"
    <span class=sf-dump-index>2</span> => "<span class=sf-dump-str title="13 characters">document_date</span>"
    <span class=sf-dump-index>3</span> => "<span class=sf-dump-str title="7 characters">user_id</span>"
    <span class=sf-dump-index>4</span> => "<span class=sf-dump-str title="13 characters">resolucion_id</span>"
    <span class=sf-dump-index>5</span> => "<span class=sf-dump-str title="15 characters">tipo_interesado</span>"
    <span class=sf-dump-index>6</span> => "<span class=sf-dump-str title="17 characters">natural_person_id</span>"
    <span class=sf-dump-index>7</span> => "<span class=sf-dump-str title="15 characters">legal_entity_id</span>"
    <span class=sf-dump-index>8</span> => "<span class=sf-dump-str title="6 characters">asunto</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => "<span class=sf-dump-str>*</span>"
  </samp>]
</samp>}
</pre><script>Sfdump("sf-dump-1527198797", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1982047938 data-indent-pad="  "><span class=sf-dump-const>true</span>
</pre><script>Sfdump("sf-dump-1982047938", {"maxDepth":3,"maxStringLength":160})</script> 8.2.10 10.50.2 es false true local   select * from `sessions` where `id` = ? limit 1 22.48 mysql KE8nAtbHhTVpq7GkZNPabTwwlapPT2QsgK4zaLQn 1777124017.9567 select * from `users` where `id` = ? limit 1 0.82 mysql 1 1777124017.9674 select `value` from `settings` where `key` = ? limit 1 0.66 mysql charge_period 1777124017.9713 select `roles`.*, `model_has_roles`.`model_id` as `pivot_model_id`, `model_has_roles`.`role_id` as `pivot_role_id`, `model_has_roles`.`model_type` as `pivot_model_type` from `roles` inner join `model_has_roles` on `roles`.`id` = `model_has_roles`.`role_id` where `model_has_roles`.`model_id` in (1) and `model_has_roles`.`model_type` = ? 1.02 mysql App\Models\User 1777124017.9791 select * from `charges` where `resolucion_id` is not null and (`charge_period` = ? or `charge_period` is null) order by `created_at` desc 0.86 mysql 2026 1777124017.982 select * from `users` where `users`.`id` in (1) 0.63 mysql  1777124017.9839 select * from `signatures` where `signatures`.`charge_id` in (1, 2) 0.93 mysql  1777124017.9877 select * from `users` where `users`.`id` in (1) 0.83 mysql  1777124017.9892 select * from `users` where `users`.`id` in (1) 0.58 mysql  1777124017.9901 select * from `resolucions` where `resolucions`.`id` in (224071, 230642) 0.67 mysql  1777124017.9912 select * from `charges` where `user_id` = ? and `resolucion_id` is null and (`charge_period` = ? or `charge_period` is null) order by `created_at` desc 0.78 mysql 1 2026 1777124017.9924 select * from `charges` where `resolucion_id` is null and exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `assigned_to` = ?) and `tipo_interesado` not in (?, ?) and (`charge_period` = ? or `charge_period` is null) and exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` != ?) order by `created_at` desc 0.96 mysql 1 Persona Juridica Persona Natural 2026 rechazado 1777124017.9941 select * from `charges` where `user_id` = ? and `resolucion_id` is null and `tipo_interesado` in (?, ?) and (`charge_period` = ? or `charge_period` is null) order by `created_at` desc 0.76 mysql 1 Persona Juridica Persona Natural 2026 1777124017.9952 select count(*) as aggregate from `charges` where exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` = ?) 0.77 mysql firmado 1777124017.9964 select count(*) as aggregate from `charges` where exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` = ?) 0.7 mysql pendiente 1777124017.9974 select * from `users` where `id` != ? order by `name` asc 0.82 mysql 1 1777124017.9984 select distinct `charge_period` from `charges` where `charge_period` is not null order by `charge_period` desc 0.68 mysql  1777124017.9993 select `value` from `settings` where `key` = ? limit 1 1.22 mysql charges_refresh_interval 1777124018.0007 local null null C:\laragon\www\Qilqana null 20bc5bcf-7772-4b30-94a8-6db26ac96ef5 null null phpstorm auto false C:\laragon\www\Qilqana null true false \ Clipboard %path:%line true Sublime subl://open?url=file://%path&line=%line TextMate txmt://open?url=file://%path&line=%line Emacs emacs://open?url=file://%path&line=%line MacVim mvim://open/?url=file://%path&line=%line PhpStorm phpstorm://open?file=%path&line=%line PHPStorm Remote javascript:r = new XMLHttpRequest;r.open("get", "http://localhost:63342/api/file/%path:%line");r.send() Idea idea://open?file=%path&line=%line VS Code vscode://file/%path:%line VS Code Insiders vscode-insiders://file/%path:%line VS Code Remote vscode://vscode-remote/%path:%line VS Code Insiders Remote vscode-insiders://vscode-remote/%path:%line VS Codium vscodium://file/%path:%line Cursor cursor://file/%path:%line Atom atom://core/open/file?filename=%path&line=%line Nova nova://open?path=%path&line=%line NetBeans netbeans://open/?f=%path:%line Zed zed://file/%path:%line Windsurf windsurf://file/%path:%line Xdebug xdebug://%path@%line https://flareapp.io/api/public-reports  /_ignition/update-config C:\laragon\www\Qilqana\app\Models\Charge.php 68 handleError Illuminate\Foundation\Bootstrap\HandleExceptions { return $this->hasOne(Signature::class); } null /* Accessors para optimizar vistas */ null public function getInteresadoLabelAttribute(): string { switch ($this->tipo_interesado) { case 'Persona Juridica': return $this->legalEntity?->razon_social ?: $this->legalEntity?->ruc ?: '---'; case 'Persona Natural': $person = $this->naturalPerson; $fullName = trim(($person->nombres ?? '').' '.($person->apellido_paterno ?? '').' '.($person->apellido_materno ?? '')); null return $fullName !== '' ? $fullName : ($person->dni ?: '---'); case 'Trabajador UGEL': return $this->user?->name.' '.$this->user?->last_name ?: '---'; default: return '---'; } } null public function getHasSignatureAttribute(): bool { return (bool) ($this->signature?->signature_root); } null public function getHasCartaPoderAttribute(): bool {  true app\Models\Charge.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Bootstrap\HandleExceptions.php 255 Illuminate\Foundation\Bootstrap\{closure} Illuminate\Foundation\Bootstrap\HandleExceptions * @return \Symfony\Component\ErrorHandler\Error\FatalError */ protected function fatalErrorFromPhpError(array $error, $traceOffset = null) { return new FatalError($error['message'], 0, $error, $traceOffset); } null /** * Forward a method call to the given method if an application instance exists. * * @return callable */ protected function forwardsTo($method) { return fn (...$arguments) => static::$app ? $this->{$method}(...$arguments) : false; } null /** * Determine if the error level is a deprecation. * * @param  int  $level * @return bool */ protected function isDeprecation($level) { return in_array($level, [E_DEPRECATED, E_USER_DEPRECATED]); } null level 2 int false false false message Attempt to read property "dni" on null string false false false file C:\laragon\www\Qilqana\app\Models\Charge.php string false false false line 68 int false false false false vendor\laravel\framework\src\Illuminate\Foundation\Bootstrap\HandleExceptions.php C:\laragon\www\Qilqana\app\Models\Charge.php 68 getInteresadoLabelAttribute App\Models\Charge { return $this->hasOne(Signature::class); } null /* Accessors para optimizar vistas */ null public function getInteresadoLabelAttribute(): string { switch ($this->tipo_interesado) { case 'Persona Juridica': return $this->legalEntity?->razon_social ?: $this->legalEntity?->ruc ?: '---'; case 'Persona Natural': $person = $this->naturalPerson; $fullName = trim(($person->nombres ?? '').' '.($person->apellido_paterno ?? '').' '.($person->apellido_materno ?? '')); null return $fullName !== '' ? $fullName : ($person->dni ?: '---'); case 'Trabajador UGEL': return $this->user?->name.' '.$this->user?->last_name ?: '---'; default: return '---'; } } null public function getHasSignatureAttribute(): bool { return (bool) ($this->signature?->signature_root); } null public function getHasCartaPoderAttribute(): bool { arg0 2 int false false false arg1 Attempt to read property "dni" on null string false false false arg2 C:\laragon\www\Qilqana\app\Models\Charge.php string false false false arg3 68 int false false false true app\Models\Charge.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 658 mutateAttribute Illuminate\Database\Eloquent\Model return static::$getAttributeMutatorCache[get_class($this)][$key] = false; } null return static::$getAttributeMutatorCache[get_class($this)][$key] = is_callable($this->{Str::camel($key)}()->get); } null /** * Get the value of an attribute using its mutator. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function mutateAttribute($key, $value) { return $this->{'get'.Str::studly($key).'Attribute'}($value); } null /** * Get the value of an "Attribute" return type marked attribute using its mutator. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function mutateAttributeMarkedAttribute($key, $value) { if (array_key_exists($key, $this->attributeCastCache)) { return $this->attributeCastCache[$key]; } arg0 null null false false false false vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 2124 transformModelValue Illuminate\Database\Eloquent\Model } null /** * Transform a raw model value using mutators, casts, etc. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transformModelValue($key, $value) { // If the attribute has a get mutator, we will call that then return what // it returns as the value, which is useful for transforming values on // retrieval from the model to a form that is more useful for usage. if ($this->hasGetMutator($key)) { return $this->mutateAttribute($key, $value); } elseif ($this->hasAttributeGetMutator($key)) { return $this->mutateAttributeMarkedAttribute($key, $value); } null // If the attribute exists within the cast array, we will convert it to // an appropriate native PHP type dependent upon the associated value // given with the key in the pair. Dayle made this comment line up. if ($this->hasCast($key)) { if (static::preventsAccessingMissingAttributes() && ! array_key_exists($key, $this->attributes) && ($this->isEnumCastable($key) || in_array($this->getCastType($key), static::$primitiveCastTypes))) { $this->throwMissingAttributeExceptionIfApplicable($key); } key interesado_label string false false false value null null false false false false vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 489 getAttributeValue Illuminate\Database\Eloquent\Model null throw new MissingAttributeException($this, $key); } null return null; } null /** * Get a plain attribute (not a relationship). * * @param  string  $key * @return mixed */ public function getAttributeValue($key) { return $this->transformModelValue($key, $this->getAttributeFromArray($key)); } null /** * Get an attribute from the $attributes array. * * @param  string  $key * @return mixed */ protected function getAttributeFromArray($key) { return $this->getAttributes()[$key] ?? null; } null /** key interesado_label string false false false value null null false false false false vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 443 getAttribute Illuminate\Database\Eloquent\Model */ public function getAttribute($key) { if (! $key) { return; } null // If the attribute exists in the attribute array or has a "get" mutator we will // get the attribute's value. Otherwise, we will proceed as if the developers // are asking for a relationship's value. This covers both types of values. if (array_key_exists($key, $this->attributes) || array_key_exists($key, $this->casts) || $this->hasGetMutator($key) || $this->hasAttributeMutator($key) || $this->isClassCastable($key)) { return $this->getAttributeValue($key); } null // Here we will determine if the model base class itself contains this given key // since we don't want to treat any of those methods as relationships because // they are all intended as helper methods and none of these are relations. if (method_exists(self::class, $key)) { return $this->throwMissingAttributeExceptionIfApplicable($key); } null return $this->isRelation($key) || $this->relationLoaded($key) ? $this->getRelationValue($key) : $this->throwMissingAttributeExceptionIfApplicable($key); } null key interesado_label string false false false false vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Model.php 2227 __get Illuminate\Database\Eloquent\Model * @return string */ public function broadcastChannel() { return str_replace('\\', '.', get_class($this)).'.'.$this->getKey(); } null /** * Dynamically retrieve attributes on the model. * * @param  string  $key * @return mixed */ public function __get($key) { return $this->getAttribute($key); } null /** * Dynamically set attributes on the model. * * @param  string  $key * @param  mixed  $value * @return void */ public function __set($key, $value) { $this->setAttribute($key, $value); } null key interesado_label string false false false false vendor\laravel\framework\src\Illuminate\Database\Eloquent\Model.php C:\laragon\www\Qilqana\resources\views\charges\partials\item-actions.blade.php 40 require null <span class="material-symbols-outlined">block</span> </button> @endif null @include('charges.forms.delete', [ 'charge' => $charge, 'disabled' => ($charge->signature?->signature_status !== 'pendiente' && !Auth::user()->hasRole('ADMINISTRADOR')), ]) </div> null <div class="mt-1"> <button type="button" class="btn btn-outline-secondary btn-sm btn-view-charge-details" title="Ver detalles" data-charge-id="{{ $charge->id }}" data-n-charge="{{ $charge->n_charge }}" data-interesado="{{ $charge->interesado_label }}" data-tipo="{{ $charge->tipo_interesado }}" data-asunto="{{ $charge->asunto }}" data-fecha="{{ $charge->document_date ? \Carbon\Carbon::parse($charge->document_date)->format('d/m/Y') : '---' }}" data-user="{{ $charge->user?->name }} {{ $charge->user?->last_name }}" data-status="{{ ucfirst($charge->signature?->signature_status ?? 'pendiente') }}" data-has-signature="{{ $charge->has_signature ? '1' : '0' }}" data-signature-url="{{ route('charges.file.signature', $charge) }}" data-signer="{{ $charge->signature?->signer?->name ?? '' }} {{ $charge->signature?->signer?->last_name ?? '' }}" data-titularidad="{{ $charge->signature?->titularidad ? '1' : '0' }}" data-parentesco="{{ $charge->signature?->parentesco ?? '' }}" data-titular-name="{{ $charge->resolucion?->nombres_apellidos ?? $charge->naturalPerson?->full_name ?? '' }}" data-has-evidence="{{ $charge->has_evidence ? '1' : '0' }}" data-evidence-url="{{ route('charges.file.evidence', $charge) }}" data-has-carta-poder="{{ $charge->has_carta_poder ? '1' : '0' }}" key interesado_label string false false false true resources\views\charges\partials\item-actions.blade.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\aee3964602ead821ce0538ab38b5b82c.php string false false false false vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/aee3964602ead821ce0538ab38b5b82c.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/aee3964602ead821ce0538ab38b5b82c.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/partials/item-actions.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\resources\views\charges\partials\lists\resolution.blade.php 74 require null <div class="d-flex justify-content-between align-items-start gap-2"> <div> <div class="small text-muted">Cargo #{{ $charge->n_charge }}</div> <div class="fw-semibold">RD: {{ $charge->resolucion?->rd }}</div> <div class="small text-muted">{{ $charge->resolucion?->periodo }}</div> </div> @include('charges.partials.status-badge', [ 'status' => $charge->signature?->signature_status, ]) </div> <div class="mt-2"> <div class="small text-muted">Interesado: {{ $charge->resolucion?->nombres_apellidos }} </div> </div> <div class="mt-3"> @include('charges.partials.item-actions', [ 'charge' => $charge, 'canSign' => true, ]) </div> </div> </div> @empty <div class="text-center text-muted py-4">No hay cargos de resoluciones.</div> @endforelse </div> null {{-- VISTA ESCRITORIO --}} <div class="table-responsive d-none d-md-block"> <table class="table align-middle table-hover mb-0"> callback null null false false false true resources\views\charges\partials\lists\resolution.blade.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\9950652d1e1370f0a05e8d8b1308af59.php string false false false false vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/9950652d1e1370f0a05e8d8b1308af59.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/9950652d1e1370f0a05e8d8b1308af59.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/partials/lists/resolution.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\resources\views\charges\partials\dashboard.blade.php 127 require null </button> </li> <li class="nav-item" role="presentation"> <button class="nav-link d-flex align-items-center gap-2" id="created-tab" data-bs-toggle="tab" data-bs-target="#created-tab-pane" type="button" role="tab" aria-controls="created-tab-pane" aria-selected="false"> Creados <span class="badge bg-secondary ms-1">{{ $createdTotal }}</span> </button> </li> <li class="nav-item" role="presentation"> <button class="nav-link d-flex align-items-center gap-2" id="sent-tab" data-bs-toggle="tab" data-bs-target="#sent-tab-pane" type="button" role="tab" aria-controls="sent-tab-pane" aria-selected="false"> Enviados <span class="badge bg-secondary ms-1">{{ $sentTotal }}</span> </button> </li> </ul> null <div class="tab-content" id="charges-tabs-content"> @if ($canViewResolutionCharges) @include('charges.partials.lists.resolution', ['active' => true]) @endif null @include('charges.partials.lists.received', ['active' => !$canViewResolutionCharges]) null @include('charges.partials.lists.created') null @include('charges.partials.lists.sent') </div> null callback null null false false false true resources\views\charges\partials\dashboard.blade.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\5ad9442a6a0a540f7d994a78d05830d2.php string false false false false vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/5ad9442a6a0a540f7d994a78d05830d2.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/5ad9442a6a0a540f7d994a78d05830d2.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/partials/dashboard.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\resources\views\charges\index.blade.php 42 require null <h5 class="mb-2">Errores durante la importacion:</h5> <ul class="mb-0"> @foreach (session('errores') as $error) <li>{{ $error }}</li> @endforeach </ul> </div> @endif null @if (session('success')) <div class="alert alert-success shadow-sm"> {{ session('success') }} </div> @endif <div id="charges-dashboard" data-refresh-interval="{{ $refreshIntervalSeconds ?? 5 }}" data-refresh-url="{{ route('charges.refresh') }}"> @include('charges.partials.dashboard') </div> </div> {{-- Formularios de crear cargos --}} @include('charges.forms.create') null {{-- Formularios de editar cargos --}} @include('charges.forms.edit') null {{-- Formularios de firmar cargos --}} @include('charges.forms.sign') null {{-- Formularios de rechazar cargos --}} @include('charges.forms.reject') null callback null null false false false true resources\views\charges\index.blade.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\15d308017064a4a142ff7af4cc62d614.php string false false false false vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/15d308017064a4a142ff7af4cc62d614.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/15d308017064a4a142ff7af4cc62d614.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/index.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Response.php 69 setContent Illuminate\Http\Response // from routes that will be automatically transformed to their JSON form. if ($this->shouldBeJson($content)) { $this->header('Content-Type', 'application/json'); null $content = $this->morphToJson($content); null if ($content === false) { throw new InvalidArgumentException(json_last_error_msg()); } } null // If this content implements the "Renderable" interface then we will call the // render method on the object so we will avoid any "__toString" exceptions // that might be thrown and have their errors obscured by PHP's handling. elseif ($content instanceof Renderable) { $content = $content->render(); } null parent::setContent($content); null return $this; } null /** * Determine if the given content should be turned into JSON. * * @param  mixed  $content * @return bool */ protected function shouldBeJson($content) callback null null false false false false vendor\laravel\framework\src\Illuminate\Http\Response.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Response.php 35 __construct Illuminate\Http\Response null /** * Create a new HTTP response. * * @param  mixed  $content * @param  int  $status * @param  array  $headers * @return void * * @throws \InvalidArgumentException */ public function __construct($content = '', $status = 200, array $headers = []) { $this->headers = new ResponseHeaderBag($headers); null $this->setContent($content); $this->setStatusCode($status); $this->setProtocolVersion('1.0'); } null /** * Set the content on the response. * * @param  mixed  $content * @return $this * * @throws \InvalidArgumentException */ public function setContent(mixed $content): static { null false vendor\laravel\framework\src\Illuminate\Http\Response.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 918 toResponse Illuminate\Routing\Router if ($response instanceof PsrResponseInterface) { $response = (new HttpFoundationFactory)->createResponse($response); } elseif ($response instanceof Model && $response->wasRecentlyCreated) { $response = new JsonResponse($response, 201); } elseif ($response instanceof Stringable) { $response = new Response($response->__toString(), 200, ['Content-Type' => 'text/html']); } elseif (! $response instanceof SymfonyResponse && ($response instanceof Arrayable || $response instanceof Jsonable || $response instanceof ArrayObject || $response instanceof JsonSerializable || $response instanceof stdClass || is_array($response))) { $response = new JsonResponse($response); } elseif (! $response instanceof SymfonyResponse) { $response = new Response($response, 200, ['Content-Type' => 'text/html']); } null if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) { $response->setNotModified(); } null return $response->prepare($request); } null /** * Substitute the route bindings onto the route. * * @param  \Illuminate\Routing\Route  $route * @return \Illuminate\Routing\Route null false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 885 prepareResponse Illuminate\Routing\Router { return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all(); } null /** * Create a response instance from the given value. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { $this->events->dispatch(new PreparingResponse($request, $response)); null return tap(static::toResponse($request, $response), function ($response) use ($request) { $this->events->dispatch(new ResponsePrepared($request, $response)); }); } null /** * Static version of prepareResponse. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public static function toResponse($request, $response) { if ($response instanceof Responsable) { null false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 805 Illuminate\Routing\{closure} Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 144 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline return $this->then(function ($passable) { return $passable; }); } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\boost\src\Middleware\InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\boost\src\Middleware\InjectBoost.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Middleware\SubstituteBindings.php 50 handle Illuminate\Routing\Middleware\SubstituteBindings public function __construct(Registrar $router) { $this->router = $router; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { try { $this->router->substituteBindings($route = $request->route()); null $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Routing\Middleware\SubstituteBindings.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Auth\Middleware\Authenticate.php 57 handle Illuminate\Auth\Middleware\Authenticate null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @param  string[]  ...$guards * @return mixed * * @throws \Illuminate\Auth\AuthenticationException */ public function handle($request, Closure $next, ...$guards) { $this->authenticate($request, $guards); null return $next($request); } null /** * Determine if the user is logged in to any of the given guards. * * @param  \Illuminate\Http\Request  $request * @param  array  $guards * @return void * * @throws \Illuminate\Auth\AuthenticationException */ protected function authenticate($request, array $guards) { if (empty($guards)) { arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Auth\Middleware\Authenticate.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false guards  array false true false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\VerifyCsrfToken.php 78 handle Illuminate\Foundation\Http\Middleware\VerifyCsrfToken * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\VerifyCsrfToken.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Middleware\ShareErrorsFromSession.php 49 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // Putting the errors in the view for every view allows the developer to just // assume that some errors are always available, which is convenient since // they don't have to continually run checks for the presence of errors. null return $next($request); } } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\View\Middleware\ShareErrorsFromSession.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php 121 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // Again, if the session has been configured we will need to close out the session // so that the attributes may be persisted to some storage medium. We will also // add the session identifier cookie to the application response headers now. $this->saveSession($request); null return $response; } null /** arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php 64 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * Handle the given request within session state. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleRequestWhileBlocking(Request $request, $session, Closure $next) { if (! $request->route() instanceof Route) { return; request GET http://qilqana.test/charges Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse.php 37 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies * @return void */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Cookie\Middleware\EncryptCookies.php 67 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * Decrypt the cookies on the request. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @return \Symfony\Component\HttpFoundation\Request */ protected function decrypt(Request $request) { foreach ($request->cookies as $key => $cookie) { if ($this->isDisabled($key)) { continue; } arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Cookie\Middleware\EncryptCookies.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 119 then Illuminate\Pipeline\Pipeline return $this; } null /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null return $pipeline($this->passable); } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { return $this->then(function ($passable) { return $passable; }); } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 805 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php:805-807 Closure false false false false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 784 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * Run the given route within a Stack "onion" instance. * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 748 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * Dispatch the request to a route and return the response. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request)); } null /** * Find the route matching a given request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Routing\Route */ protected function findRoute($request) { $this->events->dispatch(new Routing($request)); null $this->current = $route = $this->routes->match($request); null request GET http://qilqana.test/charges Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 737 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * Dispatch the request to a route and return the response. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request)); } null /** request GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 200 Illuminate\Foundation\Http\{closure} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * Call the terminate method on any terminable middleware. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Http\Response  $response * @return void */ public function terminate($request, $response) { $this->terminateMiddleware($request, $response); null request GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 144 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline return $this->then(function ($passable) { return $passable; }); } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TrimStrings.php 40 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { if (in_array($key, $this->except, true) || ! is_string($value)) { return $value; } request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TrimStrings.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ValidatePostSize.php 27 handle Illuminate\Foundation\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException; } null return $next($request); } null /** * Determine the server 'post_max_size' as bytes. * * @return int */ protected function getPostMaxSize() { if (is_numeric($postMaxSize = ini_get('post_max_size'))) { return (int) $postMaxSize; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ValidatePostSize.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance.php 99 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * Determine if the incoming request has a maintenance mode bypass cookie. * * @param  \Illuminate\Http\Request  $request * @param  array  $data * @return bool */ protected function hasValidBypassCookie($request, array $data) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Middleware\HandleCors.php 49 handle Illuminate\Http\Middleware\HandleCors { $this->container = $container; $this->cors = $cors; } null /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Http\Middleware\HandleCors.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Middleware\TrustProxies.php 39 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * Sets the trusted proxies on the request. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function setTrustedProxyIpAddresses(Request $request) { $trustedIps = $this->proxies() ?: config('trustedproxy.proxies'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Http\Middleware\TrustProxies.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 119 then Illuminate\Pipeline\Pipeline return $this; } null /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null return $pipeline($this->passable); } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { return $this->then(function ($passable) { return $passable; }); } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Facade::clearResolvedInstance('request'); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php:197-201 Closure false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php C:\laragon\www\Qilqana\public\index.php 51 [top] null | | Composer provides a convenient, automatically generated class loader for | this application. We just need to utilize it! We'll simply require it | into the script here so we don't need to manually load our classes. | */ null require __DIR__.'/../vendor/autoload.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request using | the application's HTTP kernel. Then, we will send the response back | to this client's browser, allowing them to enjoy our application. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() )->send(); null $kernel->terminate($request, $response); null  true public\index.php http://qilqana.test/charges null GET Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0    select * from `sessions` where `id` = ? limit 1 22.48 mysql KE8nAtbHhTVpq7GkZNPabTwwlapPT2QsgK4zaLQn 1777124017.9567 select * from `users` where `id` = ? limit 1 0.82 mysql 1 1777124017.9674 select `value` from `settings` where `key` = ? limit 1 0.66 mysql charge_period 1777124017.9713 select `roles`.*, `model_has_roles`.`model_id` as `pivot_model_id`, `model_has_roles`.`role_id` as `pivot_role_id`, `model_has_roles`.`model_type` as `pivot_model_type` from `roles` inner join `model_has_roles` on `roles`.`id` = `model_has_roles`.`role_id` where `model_has_roles`.`model_id` in (1) and `model_has_roles`.`model_type` = ? 1.02 mysql App\Models\User 1777124017.9791 select * from `charges` where `resolucion_id` is not null and (`charge_period` = ? or `charge_period` is null) order by `created_at` desc 0.86 mysql 2026 1777124017.982 select * from `users` where `users`.`id` in (1) 0.63 mysql  1777124017.9839 select * from `signatures` where `signatures`.`charge_id` in (1, 2) 0.93 mysql  1777124017.9877 select * from `users` where `users`.`id` in (1) 0.83 mysql  1777124017.9892 select * from `users` where `users`.`id` in (1) 0.58 mysql  1777124017.9901 select * from `resolucions` where `resolucions`.`id` in (224071, 230642) 0.67 mysql  1777124017.9912 select * from `charges` where `user_id` = ? and `resolucion_id` is null and (`charge_period` = ? or `charge_period` is null) order by `created_at` desc 0.78 mysql 1 2026 1777124017.9924 select * from `charges` where `resolucion_id` is null and exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `assigned_to` = ?) and `tipo_interesado` not in (?, ?) and (`charge_period` = ? or `charge_period` is null) and exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` != ?) order by `created_at` desc 0.96 mysql 1 Persona Juridica Persona Natural 2026 rechazado 1777124017.9941 select * from `charges` where `user_id` = ? and `resolucion_id` is null and `tipo_interesado` in (?, ?) and (`charge_period` = ? or `charge_period` is null) order by `created_at` desc 0.76 mysql 1 Persona Juridica Persona Natural 2026 1777124017.9952 select count(*) as aggregate from `charges` where exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` = ?) 0.77 mysql firmado 1777124017.9964 select count(*) as aggregate from `charges` where exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` = ?) 0.7 mysql pendiente 1777124017.9974 select * from `users` where `id` != ? order by `name` asc 0.82 mysql 1 1777124017.9984 select distinct `charge_period` from `charges` where `charge_period` is not null order by `charge_period` desc 0.68 mysql  1777124017.9993 select `value` from `settings` where `key` = ? limit 1 1.22 mysql charges_refresh_interval 1777124018.0007   null qilqana.test keep-alive max-age=0 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 http://qilqana.test/charges gzip, deflate es-419,es;q=0.9,en;q=0.8,ja;q=0.7,th;q=0.6,ko;q=0.5 <CENSORED> 1|LMdigGaD4gInPG7UFT4HNiNSjzg9MiGxyUL8xYezcWkTiJpCTMFS5tsxjGPG|$2y$12$WbJyS7sgPdXNvaihX7CNXe9HlrIjg9GQx9pfIqWmY6LTNrDNKzzEa u1GnxmSu44kIW5DOHkL8h3Ritba0zDkFribOr0JX KE8nAtbHhTVpq7GkZNPabTwwlapPT2QsgK4zaLQn u1GnxmSu44kIW5DOHkL8h3Ritba0zDkFribOr0JX 1 http://qilqana.test/charges   8.2.10 10.50.2 es false true local 1 ADMIN ADMIN 000000000 2026-04-20T00:59:38.000000Z 2026-04-20T00:59:38.000000Z 1 ADMINISTRADOR web 2026-04-20T00:59:38.000000Z 2026-04-20T00:59:38.000000Z App\Models\User 1 1 charges.index  App\Http\Controllers\ChargeController@index web auth null null C:\laragon\www\Qilqana\resources\views\charges\partials\item-actions.blade.php <pre class=sf-dump id=sf-dump-2038298193 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\ViewErrorBag</span> {<a class=sf-dump-ref>#1363</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">bags</span>: []
</samp>}
</pre><script>Sfdump("sf-dump-2038298193", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1954721960 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1486</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-1954721960", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1313394630 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1522</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-1313394630", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-828577261 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1545</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-828577261", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-892785481 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1454</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:2</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1437</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
    <span class=sf-dump-index>1</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1438</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-892785481", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1185025995 data-indent-pad="  "><span class=sf-dump-num>2</span>
</pre><script>Sfdump("sf-dump-1185025995", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-47298517 data-indent-pad="  "><span class=sf-dump-num>2</span>
</pre><script>Sfdump("sf-dump-47298517", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-668418652 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-668418652", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1579786610 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1555</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\User
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">User</span></span> {<a class=sf-dump-ref>#1556</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="5 characters">users</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: []
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: <span class=sf-dump-note>array:2</span> [ &#8230;2]
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:4</span> [ &#8230;4]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">rememberTokenName</span>: "<span class=sf-dump-str title="14 characters">remember_token</span>"
      #<span class=sf-dump-protected title="Protected property">accessToken</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">roleClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">permissionClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardPermissionsIndex</span>: <span class=sf-dump-const title="Uninitialized property">? array</span>
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-1579786610", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-985608249 data-indent-pad="  "><span class=sf-dump-note>array:1</span> [<samp data-depth=1 class=sf-dump-expanded>
  <span class=sf-dump-index>0</span> => "<span class=sf-dump-str title="4 characters">2026</span>"
</samp>]
</pre><script>Sfdump("sf-dump-985608249", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1158611231 data-indent-pad="  "><span class=sf-dump-num>5</span>
</pre><script>Sfdump("sf-dump-1158611231", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1103589455 data-indent-pad="  "><span class=sf-dump-const>true</span>
</pre><script>Sfdump("sf-dump-1103589455", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1856669333 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-1856669333", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1096668234 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-1096668234", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1740267126 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-1740267126", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-2057906800 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-2057906800", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-824476377 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-824476377", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1009313141 data-indent-pad="  "><span class=sf-dump-num>1</span>
</pre><script>Sfdump("sf-dump-1009313141", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-92075967 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1603</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-92075967", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-2086217830 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-2086217830", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-2140026815 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-2140026815", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1649280705 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1649280705", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1232960921 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1232960921", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1921467671 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1921467671", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-198462471 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-198462471", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-977217175 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-977217175", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-143273941 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-143273941", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-527068401 data-indent-pad="  "><span class=sf-dump-const>true</span>
</pre><script>Sfdump("sf-dump-527068401", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-2136035704 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1454</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:2</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1437</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
    <span class=sf-dump-index>1</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1438</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-2136035704", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1273729847 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-1273729847", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-506186273 data-indent-pad="  ">{<a class=sf-dump-ref>#1605</a><samp data-depth=1 class=sf-dump-expanded>
  +"<span class=sf-dump-public title="Runtime added dynamic property">iteration</span>": <span class=sf-dump-num>1</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">index</span>": <span class=sf-dump-num>0</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">remaining</span>": <span class=sf-dump-num>1</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">count</span>": <span class=sf-dump-num>2</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">first</span>": <span class=sf-dump-const>true</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">last</span>": <span class=sf-dump-const>false</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">odd</span>": <span class=sf-dump-const>true</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">even</span>": <span class=sf-dump-const>false</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">depth</span>": <span class=sf-dump-num>1</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">parent</span>": <span class=sf-dump-const>null</span>
</samp>}
</pre><script>Sfdump("sf-dump-506186273", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-822158153 data-indent-pad="  "><span class=sf-dump-const>false</span>
</pre><script>Sfdump("sf-dump-822158153", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1527198797 data-indent-pad="  "><span class=sf-dump-note>App\Models\Charge</span> {<a class=sf-dump-ref>#1437</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
  #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
  #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
  #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
  +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
  #<span class=sf-dump-protected title="Protected property">with</span>: []
  #<span class=sf-dump-protected title="Protected property">withCount</span>: []
  +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
  +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
  +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>id</span>" => <span class=sf-dump-num>2</span>
    "<span class=sf-dump-key>n_charge</span>" => "<span class=sf-dump-str>2</span>"
    "<span class=sf-dump-key>asunto</span>" => "<span class=sf-dump-str title="6 characters">asunto</span>"
    "<span class=sf-dump-key>charge_period</span>" => "<span class=sf-dump-str title="4 characters">2026</span>"
    "<span class=sf-dump-key>document_date</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>tipo_interesado</span>" => "<span class=sf-dump-str title="15 characters">Persona Natural</span>"
    "<span class=sf-dump-key>user_id</span>" => <span class=sf-dump-num>1</span>
    "<span class=sf-dump-key>natural_person_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>legal_entity_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>resolucion_id</span>" => <span class=sf-dump-num>230642</span>
    "<span class=sf-dump-key>created_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
    "<span class=sf-dump-key>updated_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>id</span>" => <span class=sf-dump-num>2</span>
    "<span class=sf-dump-key>n_charge</span>" => "<span class=sf-dump-str>2</span>"
    "<span class=sf-dump-key>asunto</span>" => "<span class=sf-dump-str title="6 characters">asunto</span>"
    "<span class=sf-dump-key>charge_period</span>" => "<span class=sf-dump-str title="4 characters">2026</span>"
    "<span class=sf-dump-key>document_date</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>tipo_interesado</span>" => "<span class=sf-dump-str title="15 characters">Persona Natural</span>"
    "<span class=sf-dump-key>user_id</span>" => <span class=sf-dump-num>1</span>
    "<span class=sf-dump-key>natural_person_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>legal_entity_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>resolucion_id</span>" => <span class=sf-dump-num>230642</span>
    "<span class=sf-dump-key>created_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
    "<span class=sf-dump-key>updated_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">changes</span>: []
  #<span class=sf-dump-protected title="Protected property">casts</span>: []
  #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
  #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
  #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
  #<span class=sf-dump-protected title="Protected property">appends</span>: []
  #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
  #<span class=sf-dump-protected title="Protected property">observables</span>: []
  #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>user</span>" => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\User
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">User</span></span> {<a class=sf-dump-ref>#1442</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="5 characters">users</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: []
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: <span class=sf-dump-note>array:2</span> [ &#8230;2]
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:4</span> [ &#8230;4]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">rememberTokenName</span>: "<span class=sf-dump-str title="14 characters">remember_token</span>"
      #<span class=sf-dump-protected title="Protected property">accessToken</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">roleClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">permissionClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardPermissionsIndex</span>: <span class=sf-dump-const title="Uninitialized property">? array</span>
    </samp>}
    "<span class=sf-dump-key>naturalPerson</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>legalEntity</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>signature</span>" => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Signature
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Signature</span></span> {<a class=sf-dump-ref>#1457</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="10 characters">signatures</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:15</span> [ &#8230;15]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:15</span> [ &#8230;15]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:2</span> [ &#8230;2]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
    "<span class=sf-dump-key>resolucion</span>" => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Resolucion
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Resolucion</span></span> {<a class=sf-dump-ref>#1469</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="11 characters">resolucions</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: []
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:7</span> [ &#8230;7]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">dates</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">touches</span>: []
  +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
  +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">hidden</span>: []
  #<span class=sf-dump-protected title="Protected property">visible</span>: []
  #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => "<span class=sf-dump-str title="8 characters">n_charge</span>"
    <span class=sf-dump-index>1</span> => "<span class=sf-dump-str title="13 characters">charge_period</span>"
    <span class=sf-dump-index>2</span> => "<span class=sf-dump-str title="13 characters">document_date</span>"
    <span class=sf-dump-index>3</span> => "<span class=sf-dump-str title="7 characters">user_id</span>"
    <span class=sf-dump-index>4</span> => "<span class=sf-dump-str title="13 characters">resolucion_id</span>"
    <span class=sf-dump-index>5</span> => "<span class=sf-dump-str title="15 characters">tipo_interesado</span>"
    <span class=sf-dump-index>6</span> => "<span class=sf-dump-str title="17 characters">natural_person_id</span>"
    <span class=sf-dump-index>7</span> => "<span class=sf-dump-str title="15 characters">legal_entity_id</span>"
    <span class=sf-dump-index>8</span> => "<span class=sf-dump-str title="6 characters">asunto</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => "<span class=sf-dump-str>*</span>"
  </samp>]
</samp>}
</pre><script>Sfdump("sf-dump-1527198797", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1982047938 data-indent-pad="  "><span class=sf-dump-const>true</span>
</pre><script>Sfdump("sf-dump-1982047938", {"maxDepth":3,"maxStringLength":160})</script> null null null  web http://qilqana.test/charges ErrorException Attempt to read property "dni" on null C:\laragon\www\Qilqana null 8.2.10 10.50.2 Flare local Illuminate\Foundation\Bootstrap\HandleExceptions handleError    {"url":"http://qilqana.test/charges","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0","timestamp":"2026-04-25T13:33:38.670Z"} 
[2026-04-25 13:35:12] local.DEBUG: Laravel Client PHP 10.50.2 8.2.10 ErrorException 1777124111 Attempt to read property "dni" on null    C:\laragon\www\Qilqana\app\Models\Charge.php 68 handleError Illuminate\Foundation\Bootstrap\HandleExceptions { return $this->hasOne(Signature::class); } null /* Accessors para optimizar vistas */ null public function getInteresadoLabelAttribute(): string { switch ($this->tipo_interesado) { case 'Persona Juridica': return $this->legalEntity?->razon_social ?: $this->legalEntity?->ruc ?: '---'; case 'Persona Natural': $person = $this->naturalPerson; $fullName = trim(($person->nombres ?? '').' '.($person->apellido_paterno ?? '').' '.($person->apellido_materno ?? '')); null return $fullName !== '' ? $fullName : ($person->dni ?: '---'); case 'Trabajador UGEL': return $this->user?->name.' '.$this->user?->last_name ?: '---'; default: return '---'; } } null public function getHasSignatureAttribute(): bool { return (bool) ($this->signature?->signature_root); } null public function getHasCartaPoderAttribute(): bool {  true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Bootstrap\HandleExceptions.php 255 Illuminate\Foundation\Bootstrap\{closure} Illuminate\Foundation\Bootstrap\HandleExceptions * @return \Symfony\Component\ErrorHandler\Error\FatalError */ protected function fatalErrorFromPhpError(array $error, $traceOffset = null) { return new FatalError($error['message'], 0, $error, $traceOffset); } null /** * Forward a method call to the given method if an application instance exists. * * @return callable */ protected function forwardsTo($method) { return fn (...$arguments) => static::$app ? $this->{$method}(...$arguments) : false; } null /** * Determine if the error level is a deprecation. * * @param  int  $level * @return bool */ protected function isDeprecation($level) { return in_array($level, [E_DEPRECATED, E_USER_DEPRECATED]); } null level 2 int false false false message Attempt to read property "dni" on null string false false false file C:\laragon\www\Qilqana\app\Models\Charge.php string false false false line 68 int false false false false C:\laragon\www\Qilqana\app\Models\Charge.php 68 getInteresadoLabelAttribute App\Models\Charge { return $this->hasOne(Signature::class); } null /* Accessors para optimizar vistas */ null public function getInteresadoLabelAttribute(): string { switch ($this->tipo_interesado) { case 'Persona Juridica': return $this->legalEntity?->razon_social ?: $this->legalEntity?->ruc ?: '---'; case 'Persona Natural': $person = $this->naturalPerson; $fullName = trim(($person->nombres ?? '').' '.($person->apellido_paterno ?? '').' '.($person->apellido_materno ?? '')); null return $fullName !== '' ? $fullName : ($person->dni ?: '---'); case 'Trabajador UGEL': return $this->user?->name.' '.$this->user?->last_name ?: '---'; default: return '---'; } } null public function getHasSignatureAttribute(): bool { return (bool) ($this->signature?->signature_root); } null public function getHasCartaPoderAttribute(): bool { arg0 2 int false false false arg1 Attempt to read property "dni" on null string false false false arg2 C:\laragon\www\Qilqana\app\Models\Charge.php string false false false arg3 68 int false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 658 mutateAttribute Illuminate\Database\Eloquent\Model return static::$getAttributeMutatorCache[get_class($this)][$key] = false; } null return static::$getAttributeMutatorCache[get_class($this)][$key] = is_callable($this->{Str::camel($key)}()->get); } null /** * Get the value of an attribute using its mutator. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function mutateAttribute($key, $value) { return $this->{'get'.Str::studly($key).'Attribute'}($value); } null /** * Get the value of an "Attribute" return type marked attribute using its mutator. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function mutateAttributeMarkedAttribute($key, $value) { if (array_key_exists($key, $this->attributeCastCache)) { return $this->attributeCastCache[$key]; } arg0 null null false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 2124 transformModelValue Illuminate\Database\Eloquent\Model } null /** * Transform a raw model value using mutators, casts, etc. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transformModelValue($key, $value) { // If the attribute has a get mutator, we will call that then return what // it returns as the value, which is useful for transforming values on // retrieval from the model to a form that is more useful for usage. if ($this->hasGetMutator($key)) { return $this->mutateAttribute($key, $value); } elseif ($this->hasAttributeGetMutator($key)) { return $this->mutateAttributeMarkedAttribute($key, $value); } null // If the attribute exists within the cast array, we will convert it to // an appropriate native PHP type dependent upon the associated value // given with the key in the pair. Dayle made this comment line up. if ($this->hasCast($key)) { if (static::preventsAccessingMissingAttributes() && ! array_key_exists($key, $this->attributes) && ($this->isEnumCastable($key) || in_array($this->getCastType($key), static::$primitiveCastTypes))) { $this->throwMissingAttributeExceptionIfApplicable($key); } key interesado_label string false false false value null null false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 489 getAttributeValue Illuminate\Database\Eloquent\Model null throw new MissingAttributeException($this, $key); } null return null; } null /** * Get a plain attribute (not a relationship). * * @param  string  $key * @return mixed */ public function getAttributeValue($key) { return $this->transformModelValue($key, $this->getAttributeFromArray($key)); } null /** * Get an attribute from the $attributes array. * * @param  string  $key * @return mixed */ protected function getAttributeFromArray($key) { return $this->getAttributes()[$key] ?? null; } null /** key interesado_label string false false false value null null false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 443 getAttribute Illuminate\Database\Eloquent\Model */ public function getAttribute($key) { if (! $key) { return; } null // If the attribute exists in the attribute array or has a "get" mutator we will // get the attribute's value. Otherwise, we will proceed as if the developers // are asking for a relationship's value. This covers both types of values. if (array_key_exists($key, $this->attributes) || array_key_exists($key, $this->casts) || $this->hasGetMutator($key) || $this->hasAttributeMutator($key) || $this->isClassCastable($key)) { return $this->getAttributeValue($key); } null // Here we will determine if the model base class itself contains this given key // since we don't want to treat any of those methods as relationships because // they are all intended as helper methods and none of these are relations. if (method_exists(self::class, $key)) { return $this->throwMissingAttributeExceptionIfApplicable($key); } null return $this->isRelation($key) || $this->relationLoaded($key) ? $this->getRelationValue($key) : $this->throwMissingAttributeExceptionIfApplicable($key); } null key interesado_label string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Model.php 2227 __get Illuminate\Database\Eloquent\Model * @return string */ public function broadcastChannel() { return str_replace('\\', '.', get_class($this)).'.'.$this->getKey(); } null /** * Dynamically retrieve attributes on the model. * * @param  string  $key * @return mixed */ public function __get($key) { return $this->getAttribute($key); } null /** * Dynamically set attributes on the model. * * @param  string  $key * @param  mixed  $value * @return void */ public function __set($key, $value) { $this->setAttribute($key, $value); } null key interesado_label string false false false false C:\laragon\www\Qilqana\resources\views\charges\partials\item-actions.blade.php 40 require null <span class="material-symbols-outlined">block</span> </button> @endif null @include('charges.forms.delete', [ 'charge' => $charge, 'disabled' => ($charge->signature?->signature_status !== 'pendiente' && !Auth::user()->hasRole('ADMINISTRADOR')), ]) </div> null <div class="mt-1"> <button type="button" class="btn btn-outline-secondary btn-sm btn-view-charge-details" title="Ver detalles" data-charge-id="{{ $charge->id }}" data-n-charge="{{ $charge->n_charge }}" data-interesado="{{ $charge->interesado_label }}" data-tipo="{{ $charge->tipo_interesado }}" data-asunto="{{ $charge->asunto }}" data-fecha="{{ $charge->document_date ? \Carbon\Carbon::parse($charge->document_date)->format('d/m/Y') : '---' }}" data-user="{{ $charge->user?->name }} {{ $charge->user?->last_name }}" data-status="{{ ucfirst($charge->signature?->signature_status ?? 'pendiente') }}" data-has-signature="{{ $charge->has_signature ? '1' : '0' }}" data-signature-url="{{ route('charges.file.signature', $charge) }}" data-signer="{{ $charge->signature?->signer?->name ?? '' }} {{ $charge->signature?->signer?->last_name ?? '' }}" data-titularidad="{{ $charge->signature?->titularidad ? '1' : '0' }}" data-parentesco="{{ $charge->signature?->parentesco ?? '' }}" data-titular-name="{{ $charge->resolucion?->nombres_apellidos ?? $charge->naturalPerson?->full_name ?? '' }}" data-has-evidence="{{ $charge->has_evidence ? '1' : '0' }}" data-evidence-url="{{ route('charges.file.evidence', $charge) }}" data-has-carta-poder="{{ $charge->has_carta_poder ? '1' : '0' }}" key interesado_label string false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\aee3964602ead821ce0538ab38b5b82c.php string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/aee3964602ead821ce0538ab38b5b82c.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/aee3964602ead821ce0538ab38b5b82c.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/partials/item-actions.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false C:\laragon\www\Qilqana\resources\views\charges\partials\lists\resolution.blade.php 74 require null <div class="d-flex justify-content-between align-items-start gap-2"> <div> <div class="small text-muted">Cargo #{{ $charge->n_charge }}</div> <div class="fw-semibold">RD: {{ $charge->resolucion?->rd }}</div> <div class="small text-muted">{{ $charge->resolucion?->periodo }}</div> </div> @include('charges.partials.status-badge', [ 'status' => $charge->signature?->signature_status, ]) </div> <div class="mt-2"> <div class="small text-muted">Interesado: {{ $charge->resolucion?->nombres_apellidos }} </div> </div> <div class="mt-3"> @include('charges.partials.item-actions', [ 'charge' => $charge, 'canSign' => true, ]) </div> </div> </div> @empty <div class="text-center text-muted py-4">No hay cargos de resoluciones.</div> @endforelse </div> null {{-- VISTA ESCRITORIO --}} <div class="table-responsive d-none d-md-block"> <table class="table align-middle table-hover mb-0"> callback null null false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\9950652d1e1370f0a05e8d8b1308af59.php string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/9950652d1e1370f0a05e8d8b1308af59.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/9950652d1e1370f0a05e8d8b1308af59.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/partials/lists/resolution.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false C:\laragon\www\Qilqana\resources\views\charges\partials\dashboard.blade.php 127 require null </button> </li> <li class="nav-item" role="presentation"> <button class="nav-link d-flex align-items-center gap-2" id="created-tab" data-bs-toggle="tab" data-bs-target="#created-tab-pane" type="button" role="tab" aria-controls="created-tab-pane" aria-selected="false"> Creados <span class="badge bg-secondary ms-1">{{ $createdTotal }}</span> </button> </li> <li class="nav-item" role="presentation"> <button class="nav-link d-flex align-items-center gap-2" id="sent-tab" data-bs-toggle="tab" data-bs-target="#sent-tab-pane" type="button" role="tab" aria-controls="sent-tab-pane" aria-selected="false"> Enviados <span class="badge bg-secondary ms-1">{{ $sentTotal }}</span> </button> </li> </ul> null <div class="tab-content" id="charges-tabs-content"> @if ($canViewResolutionCharges) @include('charges.partials.lists.resolution', ['active' => true]) @endif null @include('charges.partials.lists.received', ['active' => !$canViewResolutionCharges]) null @include('charges.partials.lists.created') null @include('charges.partials.lists.sent') </div> null callback null null false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\5ad9442a6a0a540f7d994a78d05830d2.php string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/5ad9442a6a0a540f7d994a78d05830d2.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/5ad9442a6a0a540f7d994a78d05830d2.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/partials/dashboard.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false C:\laragon\www\Qilqana\resources\views\charges\index.blade.php 42 require null <h5 class="mb-2">Errores durante la importacion:</h5> <ul class="mb-0"> @foreach (session('errores') as $error) <li>{{ $error }}</li> @endforeach </ul> </div> @endif null @if (session('success')) <div class="alert alert-success shadow-sm"> {{ session('success') }} </div> @endif <div id="charges-dashboard" data-refresh-interval="{{ $refreshIntervalSeconds ?? 5 }}" data-refresh-url="{{ route('charges.refresh') }}"> @include('charges.partials.dashboard') </div> </div> {{-- Formularios de crear cargos --}} @include('charges.forms.create') null {{-- Formularios de editar cargos --}} @include('charges.forms.edit') null {{-- Formularios de firmar cargos --}} @include('charges.forms.sign') null {{-- Formularios de rechazar cargos --}} @include('charges.forms.reject') null callback null null false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\15d308017064a4a142ff7af4cc62d614.php string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/15d308017064a4a142ff7af4cc62d614.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/15d308017064a4a142ff7af4cc62d614.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/index.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Response.php 69 setContent Illuminate\Http\Response // from routes that will be automatically transformed to their JSON form. if ($this->shouldBeJson($content)) { $this->header('Content-Type', 'application/json'); null $content = $this->morphToJson($content); null if ($content === false) { throw new InvalidArgumentException(json_last_error_msg()); } } null // If this content implements the "Renderable" interface then we will call the // render method on the object so we will avoid any "__toString" exceptions // that might be thrown and have their errors obscured by PHP's handling. elseif ($content instanceof Renderable) { $content = $content->render(); } null parent::setContent($content); null return $this; } null /** * Determine if the given content should be turned into JSON. * * @param  mixed  $content * @return bool */ protected function shouldBeJson($content) callback null null false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Response.php 35 __construct Illuminate\Http\Response null /** * Create a new HTTP response. * * @param  mixed  $content * @param  int  $status * @param  array  $headers * @return void * * @throws \InvalidArgumentException */ public function __construct($content = '', $status = 200, array $headers = []) { $this->headers = new ResponseHeaderBag($headers); null $this->setContent($content); $this->setStatusCode($status); $this->setProtocolVersion('1.0'); } null /** * Set the content on the response. * * @param  mixed  $content * @return $this * * @throws \InvalidArgumentException */ public function setContent(mixed $content): static { null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 918 toResponse Illuminate\Routing\Router if ($response instanceof PsrResponseInterface) { $response = (new HttpFoundationFactory)->createResponse($response); } elseif ($response instanceof Model && $response->wasRecentlyCreated) { $response = new JsonResponse($response, 201); } elseif ($response instanceof Stringable) { $response = new Response($response->__toString(), 200, ['Content-Type' => 'text/html']); } elseif (! $response instanceof SymfonyResponse && ($response instanceof Arrayable || $response instanceof Jsonable || $response instanceof ArrayObject || $response instanceof JsonSerializable || $response instanceof stdClass || is_array($response))) { $response = new JsonResponse($response); } elseif (! $response instanceof SymfonyResponse) { $response = new Response($response, 200, ['Content-Type' => 'text/html']); } null if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) { $response->setNotModified(); } null return $response->prepare($request); } null /** * Substitute the route bindings onto the route. * * @param  \Illuminate\Routing\Route  $route * @return \Illuminate\Routing\Route null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 885 prepareResponse Illuminate\Routing\Router { return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all(); } null /** * Create a response instance from the given value. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { $this->events->dispatch(new PreparingResponse($request, $response)); null return tap(static::toResponse($request, $response), function ($response) use ($request) { $this->events->dispatch(new ResponsePrepared($request, $response)); }); } null /** * Static version of prepareResponse. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public static function toResponse($request, $response) { if ($response instanceof Responsable) { null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 805 Illuminate\Routing\{closure} Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 144 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline return $this->then(function ($passable) { return $passable; }); } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\boost\src\Middleware\InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Middleware\SubstituteBindings.php 50 handle Illuminate\Routing\Middleware\SubstituteBindings public function __construct(Registrar $router) { $this->router = $router; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { try { $this->router->substituteBindings($route = $request->route()); null $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Auth\Middleware\Authenticate.php 57 handle Illuminate\Auth\Middleware\Authenticate null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @param  string[]  ...$guards * @return mixed * * @throws \Illuminate\Auth\AuthenticationException */ public function handle($request, Closure $next, ...$guards) { $this->authenticate($request, $guards); null return $next($request); } null /** * Determine if the user is logged in to any of the given guards. * * @param  \Illuminate\Http\Request  $request * @param  array  $guards * @return void * * @throws \Illuminate\Auth\AuthenticationException */ protected function authenticate($request, array $guards) { if (empty($guards)) { arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false guards  array false true false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\VerifyCsrfToken.php 78 handle Illuminate\Foundation\Http\Middleware\VerifyCsrfToken * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Middleware\ShareErrorsFromSession.php 49 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // Putting the errors in the view for every view allows the developer to just // assume that some errors are always available, which is convenient since // they don't have to continually run checks for the presence of errors. null return $next($request); } } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php 121 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // Again, if the session has been configured we will need to close out the session // so that the attributes may be persisted to some storage medium. We will also // add the session identifier cookie to the application response headers now. $this->saveSession($request); null return $response; } null /** arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php 64 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * Handle the given request within session state. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleRequestWhileBlocking(Request $request, $session, Closure $next) { if (! $request->route() instanceof Route) { return; request GET http://qilqana.test/charges Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse.php 37 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies * @return void */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Cookie\Middleware\EncryptCookies.php 67 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * Decrypt the cookies on the request. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @return \Symfony\Component\HttpFoundation\Request */ protected function decrypt(Request $request) { foreach ($request->cookies as $key => $cookie) { if ($this->isDisabled($key)) { continue; } arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 119 then Illuminate\Pipeline\Pipeline return $this; } null /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null return $pipeline($this->passable); } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { return $this->then(function ($passable) { return $passable; }); } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 805 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php:805-807 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 784 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * Run the given route within a Stack "onion" instance. * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 748 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * Dispatch the request to a route and return the response. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request)); } null /** * Find the route matching a given request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Routing\Route */ protected function findRoute($request) { $this->events->dispatch(new Routing($request)); null $this->current = $route = $this->routes->match($request); null request GET http://qilqana.test/charges Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 737 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * Dispatch the request to a route and return the response. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request)); } null /** request GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 200 Illuminate\Foundation\Http\{closure} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * Call the terminate method on any terminable middleware. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Http\Response  $response * @return void */ public function terminate($request, $response) { $this->terminateMiddleware($request, $response); null request GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 144 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline return $this->then(function ($passable) { return $passable; }); } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TrimStrings.php 40 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { if (in_array($key, $this->except, true) || ! is_string($value)) { return $value; } request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ValidatePostSize.php 27 handle Illuminate\Foundation\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException; } null return $next($request); } null /** * Determine the server 'post_max_size' as bytes. * * @return int */ protected function getPostMaxSize() { if (is_numeric($postMaxSize = ini_get('post_max_size'))) { return (int) $postMaxSize; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance.php 99 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * Determine if the incoming request has a maintenance mode bypass cookie. * * @param  \Illuminate\Http\Request  $request * @param  array  $data * @return bool */ protected function hasValidBypassCookie($request, array $data) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Middleware\HandleCors.php 49 handle Illuminate\Http\Middleware\HandleCors { $this->container = $container; $this->cors = $cors; } null /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Middleware\TrustProxies.php 39 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * Sets the trusted proxies on the request. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function setTrustedProxyIpAddresses(Request $request) { $trustedIps = $this->proxies() ?: config('trustedproxy.proxies'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 119 then Illuminate\Pipeline\Pipeline return $this; } null /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null return $pipeline($this->passable); } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { return $this->then(function ($passable) { return $passable; }); } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Facade::clearResolvedInstance('request'); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php:197-201 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\public\index.php 51 [top] null | | Composer provides a convenient, automatically generated class loader for | this application. We just need to utilize it! We'll simply require it | into the script here so we don't need to manually load our classes. | */ null require __DIR__.'/../vendor/autoload.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request using | the application's HTTP kernel. Then, we will send the response back | to this client's browser, allowing them to enjoy our application. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() )->send(); null $kernel->terminate($request, $response); null  true http://qilqana.test/charges null GET Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0    qilqana.test keep-alive max-age=0 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 http://qilqana.test/charges gzip, deflate es-419,es;q=0.9,en;q=0.8,ja;q=0.7,th;q=0.6,ko;q=0.5 <CENSORED> 1|LMdigGaD4gInPG7UFT4HNiNSjzg9MiGxyUL8xYezcWkTiJpCTMFS5tsxjGPG|$2y$12$WbJyS7sgPdXNvaihX7CNXe9HlrIjg9GQx9pfIqWmY6LTNrDNKzzEa u1GnxmSu44kIW5DOHkL8h3Ritba0zDkFribOr0JX KE8nAtbHhTVpq7GkZNPabTwwlapPT2QsgK4zaLQn u1GnxmSu44kIW5DOHkL8h3Ritba0zDkFribOr0JX 1 http://qilqana.test/charges   charges.index  App\Http\Controllers\ChargeController@index web auth 1 ADMIN ADMIN 000000000 2026-04-20T00:59:38.000000Z 2026-04-20T00:59:38.000000Z 1 ADMINISTRADOR web 2026-04-20T00:59:38.000000Z 2026-04-20T00:59:38.000000Z App\Models\User 1 1 C:\laragon\www\Qilqana\resources\views\charges\partials\item-actions.blade.php <pre class=sf-dump id=sf-dump-715841818 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\ViewErrorBag</span> {<a class=sf-dump-ref>#1363</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">bags</span>: []
</samp>}
</pre><script>Sfdump("sf-dump-715841818", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-291389903 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1486</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-291389903", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1989561804 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1522</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-1989561804", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1811139482 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1545</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-1811139482", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-194946877 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1454</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:2</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1437</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
    <span class=sf-dump-index>1</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1438</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-194946877", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1143563992 data-indent-pad="  "><span class=sf-dump-num>2</span>
</pre><script>Sfdump("sf-dump-1143563992", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1288264608 data-indent-pad="  "><span class=sf-dump-num>2</span>
</pre><script>Sfdump("sf-dump-1288264608", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1818316246 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1818316246", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-983502474 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1555</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\User
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">User</span></span> {<a class=sf-dump-ref>#1556</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="5 characters">users</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: []
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: <span class=sf-dump-note>array:2</span> [ &#8230;2]
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:4</span> [ &#8230;4]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">rememberTokenName</span>: "<span class=sf-dump-str title="14 characters">remember_token</span>"
      #<span class=sf-dump-protected title="Protected property">accessToken</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">roleClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">permissionClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardPermissionsIndex</span>: <span class=sf-dump-const title="Uninitialized property">? array</span>
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-983502474", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-837862503 data-indent-pad="  "><span class=sf-dump-note>array:1</span> [<samp data-depth=1 class=sf-dump-expanded>
  <span class=sf-dump-index>0</span> => "<span class=sf-dump-str title="4 characters">2026</span>"
</samp>]
</pre><script>Sfdump("sf-dump-837862503", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1588756814 data-indent-pad="  "><span class=sf-dump-num>5</span>
</pre><script>Sfdump("sf-dump-1588756814", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-551736210 data-indent-pad="  "><span class=sf-dump-const>true</span>
</pre><script>Sfdump("sf-dump-551736210", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-2102094291 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-2102094291", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-766837955 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-766837955", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1690120059 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-1690120059", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-186096483 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-186096483", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-2124358610 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-2124358610", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-888139652 data-indent-pad="  "><span class=sf-dump-num>1</span>
</pre><script>Sfdump("sf-dump-888139652", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-488040981 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1603</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-488040981", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1261751449 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1261751449", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1265884481 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1265884481", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-257883175 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-257883175", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1921497159 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1921497159", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-822768470 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-822768470", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1540194512 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1540194512", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-44532656 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-44532656", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-512960447 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-512960447", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-194911060 data-indent-pad="  "><span class=sf-dump-const>true</span>
</pre><script>Sfdump("sf-dump-194911060", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-156046683 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1454</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:2</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1437</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
    <span class=sf-dump-index>1</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1438</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-156046683", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-332301724 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-332301724", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-189624901 data-indent-pad="  ">{<a class=sf-dump-ref>#1605</a><samp data-depth=1 class=sf-dump-expanded>
  +"<span class=sf-dump-public title="Runtime added dynamic property">iteration</span>": <span class=sf-dump-num>1</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">index</span>": <span class=sf-dump-num>0</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">remaining</span>": <span class=sf-dump-num>1</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">count</span>": <span class=sf-dump-num>2</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">first</span>": <span class=sf-dump-const>true</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">last</span>": <span class=sf-dump-const>false</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">odd</span>": <span class=sf-dump-const>true</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">even</span>": <span class=sf-dump-const>false</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">depth</span>": <span class=sf-dump-num>1</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">parent</span>": <span class=sf-dump-const>null</span>
</samp>}
</pre><script>Sfdump("sf-dump-189624901", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1840623613 data-indent-pad="  "><span class=sf-dump-const>false</span>
</pre><script>Sfdump("sf-dump-1840623613", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1017425411 data-indent-pad="  "><span class=sf-dump-note>App\Models\Charge</span> {<a class=sf-dump-ref>#1437</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
  #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
  #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
  #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
  +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
  #<span class=sf-dump-protected title="Protected property">with</span>: []
  #<span class=sf-dump-protected title="Protected property">withCount</span>: []
  +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
  +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
  +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>id</span>" => <span class=sf-dump-num>2</span>
    "<span class=sf-dump-key>n_charge</span>" => "<span class=sf-dump-str>2</span>"
    "<span class=sf-dump-key>asunto</span>" => "<span class=sf-dump-str title="6 characters">asunto</span>"
    "<span class=sf-dump-key>charge_period</span>" => "<span class=sf-dump-str title="4 characters">2026</span>"
    "<span class=sf-dump-key>document_date</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>tipo_interesado</span>" => "<span class=sf-dump-str title="15 characters">Persona Natural</span>"
    "<span class=sf-dump-key>user_id</span>" => <span class=sf-dump-num>1</span>
    "<span class=sf-dump-key>natural_person_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>legal_entity_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>resolucion_id</span>" => <span class=sf-dump-num>230642</span>
    "<span class=sf-dump-key>created_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
    "<span class=sf-dump-key>updated_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>id</span>" => <span class=sf-dump-num>2</span>
    "<span class=sf-dump-key>n_charge</span>" => "<span class=sf-dump-str>2</span>"
    "<span class=sf-dump-key>asunto</span>" => "<span class=sf-dump-str title="6 characters">asunto</span>"
    "<span class=sf-dump-key>charge_period</span>" => "<span class=sf-dump-str title="4 characters">2026</span>"
    "<span class=sf-dump-key>document_date</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>tipo_interesado</span>" => "<span class=sf-dump-str title="15 characters">Persona Natural</span>"
    "<span class=sf-dump-key>user_id</span>" => <span class=sf-dump-num>1</span>
    "<span class=sf-dump-key>natural_person_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>legal_entity_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>resolucion_id</span>" => <span class=sf-dump-num>230642</span>
    "<span class=sf-dump-key>created_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
    "<span class=sf-dump-key>updated_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">changes</span>: []
  #<span class=sf-dump-protected title="Protected property">casts</span>: []
  #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
  #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
  #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
  #<span class=sf-dump-protected title="Protected property">appends</span>: []
  #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
  #<span class=sf-dump-protected title="Protected property">observables</span>: []
  #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>user</span>" => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\User
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">User</span></span> {<a class=sf-dump-ref>#1442</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="5 characters">users</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: []
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: <span class=sf-dump-note>array:2</span> [ &#8230;2]
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:4</span> [ &#8230;4]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">rememberTokenName</span>: "<span class=sf-dump-str title="14 characters">remember_token</span>"
      #<span class=sf-dump-protected title="Protected property">accessToken</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">roleClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">permissionClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardPermissionsIndex</span>: <span class=sf-dump-const title="Uninitialized property">? array</span>
    </samp>}
    "<span class=sf-dump-key>naturalPerson</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>legalEntity</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>signature</span>" => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Signature
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Signature</span></span> {<a class=sf-dump-ref>#1457</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="10 characters">signatures</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:15</span> [ &#8230;15]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:15</span> [ &#8230;15]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:2</span> [ &#8230;2]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
    "<span class=sf-dump-key>resolucion</span>" => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Resolucion
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Resolucion</span></span> {<a class=sf-dump-ref>#1469</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="11 characters">resolucions</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: []
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:7</span> [ &#8230;7]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">dates</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">touches</span>: []
  +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
  +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">hidden</span>: []
  #<span class=sf-dump-protected title="Protected property">visible</span>: []
  #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => "<span class=sf-dump-str title="8 characters">n_charge</span>"
    <span class=sf-dump-index>1</span> => "<span class=sf-dump-str title="13 characters">charge_period</span>"
    <span class=sf-dump-index>2</span> => "<span class=sf-dump-str title="13 characters">document_date</span>"
    <span class=sf-dump-index>3</span> => "<span class=sf-dump-str title="7 characters">user_id</span>"
    <span class=sf-dump-index>4</span> => "<span class=sf-dump-str title="13 characters">resolucion_id</span>"
    <span class=sf-dump-index>5</span> => "<span class=sf-dump-str title="15 characters">tipo_interesado</span>"
    <span class=sf-dump-index>6</span> => "<span class=sf-dump-str title="17 characters">natural_person_id</span>"
    <span class=sf-dump-index>7</span> => "<span class=sf-dump-str title="15 characters">legal_entity_id</span>"
    <span class=sf-dump-index>8</span> => "<span class=sf-dump-str title="6 characters">asunto</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => "<span class=sf-dump-str>*</span>"
  </samp>]
</samp>}
</pre><script>Sfdump("sf-dump-1017425411", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1471774139 data-indent-pad="  "><span class=sf-dump-const>true</span>
</pre><script>Sfdump("sf-dump-1471774139", {"maxDepth":3,"maxStringLength":160})</script> 8.2.10 10.50.2 es false true local   select * from `sessions` where `id` = ? limit 1 24.82 mysql KE8nAtbHhTVpq7GkZNPabTwwlapPT2QsgK4zaLQn 1777124110.7331 select * from `users` where `id` = ? limit 1 0.86 mysql 1 1777124110.7471 select `value` from `settings` where `key` = ? limit 1 0.63 mysql charge_period 1777124110.7528 select `roles`.*, `model_has_roles`.`model_id` as `pivot_model_id`, `model_has_roles`.`role_id` as `pivot_role_id`, `model_has_roles`.`model_type` as `pivot_model_type` from `roles` inner join `model_has_roles` on `roles`.`id` = `model_has_roles`.`role_id` where `model_has_roles`.`model_id` in (1) and `model_has_roles`.`model_type` = ? 1.19 mysql App\Models\User 1777124110.7632 select * from `charges` where `resolucion_id` is not null and (`charge_period` = ? or `charge_period` is null) order by `created_at` desc 0.83 mysql 2026 1777124110.7664 select * from `users` where `users`.`id` in (1) 1.41 mysql  1777124110.7697 select * from `signatures` where `signatures`.`charge_id` in (1, 2) 1.02 mysql  1777124110.7749 select * from `users` where `users`.`id` in (1) 0.66 mysql  1777124110.7762 select * from `users` where `users`.`id` in (1) 0.61 mysql  1777124110.7775 select * from `resolucions` where `resolucions`.`id` in (224071, 230642) 0.63 mysql  1777124110.7786 select * from `charges` where `user_id` = ? and `resolucion_id` is null and (`charge_period` = ? or `charge_period` is null) order by `created_at` desc 0.65 mysql 1 2026 1777124110.7797 select * from `charges` where `resolucion_id` is null and exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `assigned_to` = ?) and `tipo_interesado` not in (?, ?) and (`charge_period` = ? or `charge_period` is null) and exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` != ?) order by `created_at` desc 0.82 mysql 1 Persona Juridica Persona Natural 2026 rechazado 1777124110.7812 select * from `charges` where `user_id` = ? and `resolucion_id` is null and `tipo_interesado` in (?, ?) and (`charge_period` = ? or `charge_period` is null) order by `created_at` desc 0.68 mysql 1 Persona Juridica Persona Natural 2026 1777124110.7823 select count(*) as aggregate from `charges` where exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` = ?) 0.88 mysql firmado 1777124110.784 select count(*) as aggregate from `charges` where exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` = ?) 1.06 mysql pendiente 1777124110.786 select * from `users` where `id` != ? order by `name` asc 0.72 mysql 1 1777124110.787 select distinct `charge_period` from `charges` where `charge_period` is not null order by `charge_period` desc 0.59 mysql  1777124110.7879 select `value` from `settings` where `key` = ? limit 1 0.56 mysql charges_refresh_interval 1777124110.7887 local null null C:\laragon\www\Qilqana null 48a6bd3e-7d59-4e32-8594-5d5d757182d7 null null Laravel Client PHP 10.50.2 8.2.10 ErrorException 1777124111 Attempt to read property "dni" on null    C:\laragon\www\Qilqana\app\Models\Charge.php 68 handleError Illuminate\Foundation\Bootstrap\HandleExceptions { return $this->hasOne(Signature::class); } null /* Accessors para optimizar vistas */ null public function getInteresadoLabelAttribute(): string { switch ($this->tipo_interesado) { case 'Persona Juridica': return $this->legalEntity?->razon_social ?: $this->legalEntity?->ruc ?: '---'; case 'Persona Natural': $person = $this->naturalPerson; $fullName = trim(($person->nombres ?? '').' '.($person->apellido_paterno ?? '').' '.($person->apellido_materno ?? '')); null return $fullName !== '' ? $fullName : ($person->dni ?: '---'); case 'Trabajador UGEL': return $this->user?->name.' '.$this->user?->last_name ?: '---'; default: return '---'; } } null public function getHasSignatureAttribute(): bool { return (bool) ($this->signature?->signature_root); } null public function getHasCartaPoderAttribute(): bool {  true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Bootstrap\HandleExceptions.php 255 Illuminate\Foundation\Bootstrap\{closure} Illuminate\Foundation\Bootstrap\HandleExceptions * @return \Symfony\Component\ErrorHandler\Error\FatalError */ protected function fatalErrorFromPhpError(array $error, $traceOffset = null) { return new FatalError($error['message'], 0, $error, $traceOffset); } null /** * Forward a method call to the given method if an application instance exists. * * @return callable */ protected function forwardsTo($method) { return fn (...$arguments) => static::$app ? $this->{$method}(...$arguments) : false; } null /** * Determine if the error level is a deprecation. * * @param  int  $level * @return bool */ protected function isDeprecation($level) { return in_array($level, [E_DEPRECATED, E_USER_DEPRECATED]); } null level 2 int false false false message Attempt to read property "dni" on null string false false false file C:\laragon\www\Qilqana\app\Models\Charge.php string false false false line 68 int false false false false C:\laragon\www\Qilqana\app\Models\Charge.php 68 getInteresadoLabelAttribute App\Models\Charge { return $this->hasOne(Signature::class); } null /* Accessors para optimizar vistas */ null public function getInteresadoLabelAttribute(): string { switch ($this->tipo_interesado) { case 'Persona Juridica': return $this->legalEntity?->razon_social ?: $this->legalEntity?->ruc ?: '---'; case 'Persona Natural': $person = $this->naturalPerson; $fullName = trim(($person->nombres ?? '').' '.($person->apellido_paterno ?? '').' '.($person->apellido_materno ?? '')); null return $fullName !== '' ? $fullName : ($person->dni ?: '---'); case 'Trabajador UGEL': return $this->user?->name.' '.$this->user?->last_name ?: '---'; default: return '---'; } } null public function getHasSignatureAttribute(): bool { return (bool) ($this->signature?->signature_root); } null public function getHasCartaPoderAttribute(): bool { arg0 2 int false false false arg1 Attempt to read property "dni" on null string false false false arg2 C:\laragon\www\Qilqana\app\Models\Charge.php string false false false arg3 68 int false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 658 mutateAttribute Illuminate\Database\Eloquent\Model return static::$getAttributeMutatorCache[get_class($this)][$key] = false; } null return static::$getAttributeMutatorCache[get_class($this)][$key] = is_callable($this->{Str::camel($key)}()->get); } null /** * Get the value of an attribute using its mutator. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function mutateAttribute($key, $value) { return $this->{'get'.Str::studly($key).'Attribute'}($value); } null /** * Get the value of an "Attribute" return type marked attribute using its mutator. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function mutateAttributeMarkedAttribute($key, $value) { if (array_key_exists($key, $this->attributeCastCache)) { return $this->attributeCastCache[$key]; } arg0 null null false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 2124 transformModelValue Illuminate\Database\Eloquent\Model } null /** * Transform a raw model value using mutators, casts, etc. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transformModelValue($key, $value) { // If the attribute has a get mutator, we will call that then return what // it returns as the value, which is useful for transforming values on // retrieval from the model to a form that is more useful for usage. if ($this->hasGetMutator($key)) { return $this->mutateAttribute($key, $value); } elseif ($this->hasAttributeGetMutator($key)) { return $this->mutateAttributeMarkedAttribute($key, $value); } null // If the attribute exists within the cast array, we will convert it to // an appropriate native PHP type dependent upon the associated value // given with the key in the pair. Dayle made this comment line up. if ($this->hasCast($key)) { if (static::preventsAccessingMissingAttributes() && ! array_key_exists($key, $this->attributes) && ($this->isEnumCastable($key) || in_array($this->getCastType($key), static::$primitiveCastTypes))) { $this->throwMissingAttributeExceptionIfApplicable($key); } key interesado_label string false false false value null null false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 489 getAttributeValue Illuminate\Database\Eloquent\Model null throw new MissingAttributeException($this, $key); } null return null; } null /** * Get a plain attribute (not a relationship). * * @param  string  $key * @return mixed */ public function getAttributeValue($key) { return $this->transformModelValue($key, $this->getAttributeFromArray($key)); } null /** * Get an attribute from the $attributes array. * * @param  string  $key * @return mixed */ protected function getAttributeFromArray($key) { return $this->getAttributes()[$key] ?? null; } null /** key interesado_label string false false false value null null false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 443 getAttribute Illuminate\Database\Eloquent\Model */ public function getAttribute($key) { if (! $key) { return; } null // If the attribute exists in the attribute array or has a "get" mutator we will // get the attribute's value. Otherwise, we will proceed as if the developers // are asking for a relationship's value. This covers both types of values. if (array_key_exists($key, $this->attributes) || array_key_exists($key, $this->casts) || $this->hasGetMutator($key) || $this->hasAttributeMutator($key) || $this->isClassCastable($key)) { return $this->getAttributeValue($key); } null // Here we will determine if the model base class itself contains this given key // since we don't want to treat any of those methods as relationships because // they are all intended as helper methods and none of these are relations. if (method_exists(self::class, $key)) { return $this->throwMissingAttributeExceptionIfApplicable($key); } null return $this->isRelation($key) || $this->relationLoaded($key) ? $this->getRelationValue($key) : $this->throwMissingAttributeExceptionIfApplicable($key); } null key interesado_label string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Model.php 2227 __get Illuminate\Database\Eloquent\Model * @return string */ public function broadcastChannel() { return str_replace('\\', '.', get_class($this)).'.'.$this->getKey(); } null /** * Dynamically retrieve attributes on the model. * * @param  string  $key * @return mixed */ public function __get($key) { return $this->getAttribute($key); } null /** * Dynamically set attributes on the model. * * @param  string  $key * @param  mixed  $value * @return void */ public function __set($key, $value) { $this->setAttribute($key, $value); } null key interesado_label string false false false false C:\laragon\www\Qilqana\resources\views\charges\partials\item-actions.blade.php 40 require null <span class="material-symbols-outlined">block</span> </button> @endif null @include('charges.forms.delete', [ 'charge' => $charge, 'disabled' => ($charge->signature?->signature_status !== 'pendiente' && !Auth::user()->hasRole('ADMINISTRADOR')), ]) </div> null <div class="mt-1"> <button type="button" class="btn btn-outline-secondary btn-sm btn-view-charge-details" title="Ver detalles" data-charge-id="{{ $charge->id }}" data-n-charge="{{ $charge->n_charge }}" data-interesado="{{ $charge->interesado_label }}" data-tipo="{{ $charge->tipo_interesado }}" data-asunto="{{ $charge->asunto }}" data-fecha="{{ $charge->document_date ? \Carbon\Carbon::parse($charge->document_date)->format('d/m/Y') : '---' }}" data-user="{{ $charge->user?->name }} {{ $charge->user?->last_name }}" data-status="{{ ucfirst($charge->signature?->signature_status ?? 'pendiente') }}" data-has-signature="{{ $charge->has_signature ? '1' : '0' }}" data-signature-url="{{ route('charges.file.signature', $charge) }}" data-signer="{{ $charge->signature?->signer?->name ?? '' }} {{ $charge->signature?->signer?->last_name ?? '' }}" data-titularidad="{{ $charge->signature?->titularidad ? '1' : '0' }}" data-parentesco="{{ $charge->signature?->parentesco ?? '' }}" data-titular-name="{{ $charge->resolucion?->nombres_apellidos ?? $charge->naturalPerson?->full_name ?? '' }}" data-has-evidence="{{ $charge->has_evidence ? '1' : '0' }}" data-evidence-url="{{ route('charges.file.evidence', $charge) }}" data-has-carta-poder="{{ $charge->has_carta_poder ? '1' : '0' }}" key interesado_label string false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\aee3964602ead821ce0538ab38b5b82c.php string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/aee3964602ead821ce0538ab38b5b82c.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/aee3964602ead821ce0538ab38b5b82c.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/partials/item-actions.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false C:\laragon\www\Qilqana\resources\views\charges\partials\lists\resolution.blade.php 74 require null <div class="d-flex justify-content-between align-items-start gap-2"> <div> <div class="small text-muted">Cargo #{{ $charge->n_charge }}</div> <div class="fw-semibold">RD: {{ $charge->resolucion?->rd }}</div> <div class="small text-muted">{{ $charge->resolucion?->periodo }}</div> </div> @include('charges.partials.status-badge', [ 'status' => $charge->signature?->signature_status, ]) </div> <div class="mt-2"> <div class="small text-muted">Interesado: {{ $charge->resolucion?->nombres_apellidos }} </div> </div> <div class="mt-3"> @include('charges.partials.item-actions', [ 'charge' => $charge, 'canSign' => true, ]) </div> </div> </div> @empty <div class="text-center text-muted py-4">No hay cargos de resoluciones.</div> @endforelse </div> null {{-- VISTA ESCRITORIO --}} <div class="table-responsive d-none d-md-block"> <table class="table align-middle table-hover mb-0"> callback null null false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\9950652d1e1370f0a05e8d8b1308af59.php string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/9950652d1e1370f0a05e8d8b1308af59.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/9950652d1e1370f0a05e8d8b1308af59.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/partials/lists/resolution.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false C:\laragon\www\Qilqana\resources\views\charges\partials\dashboard.blade.php 127 require null </button> </li> <li class="nav-item" role="presentation"> <button class="nav-link d-flex align-items-center gap-2" id="created-tab" data-bs-toggle="tab" data-bs-target="#created-tab-pane" type="button" role="tab" aria-controls="created-tab-pane" aria-selected="false"> Creados <span class="badge bg-secondary ms-1">{{ $createdTotal }}</span> </button> </li> <li class="nav-item" role="presentation"> <button class="nav-link d-flex align-items-center gap-2" id="sent-tab" data-bs-toggle="tab" data-bs-target="#sent-tab-pane" type="button" role="tab" aria-controls="sent-tab-pane" aria-selected="false"> Enviados <span class="badge bg-secondary ms-1">{{ $sentTotal }}</span> </button> </li> </ul> null <div class="tab-content" id="charges-tabs-content"> @if ($canViewResolutionCharges) @include('charges.partials.lists.resolution', ['active' => true]) @endif null @include('charges.partials.lists.received', ['active' => !$canViewResolutionCharges]) null @include('charges.partials.lists.created') null @include('charges.partials.lists.sent') </div> null callback null null false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\5ad9442a6a0a540f7d994a78d05830d2.php string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/5ad9442a6a0a540f7d994a78d05830d2.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/5ad9442a6a0a540f7d994a78d05830d2.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/partials/dashboard.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false C:\laragon\www\Qilqana\resources\views\charges\index.blade.php 42 require null <h5 class="mb-2">Errores durante la importacion:</h5> <ul class="mb-0"> @foreach (session('errores') as $error) <li>{{ $error }}</li> @endforeach </ul> </div> @endif null @if (session('success')) <div class="alert alert-success shadow-sm"> {{ session('success') }} </div> @endif <div id="charges-dashboard" data-refresh-interval="{{ $refreshIntervalSeconds ?? 5 }}" data-refresh-url="{{ route('charges.refresh') }}"> @include('charges.partials.dashboard') </div> </div> {{-- Formularios de crear cargos --}} @include('charges.forms.create') null {{-- Formularios de editar cargos --}} @include('charges.forms.edit') null {{-- Formularios de firmar cargos --}} @include('charges.forms.sign') null {{-- Formularios de rechazar cargos --}} @include('charges.forms.reject') null callback null null false false false true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\15d308017064a4a142ff7af4cc62d614.php string false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/15d308017064a4a142ff7af4cc62d614.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/15d308017064a4a142ff7af4cc62d614.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/index.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Response.php 69 setContent Illuminate\Http\Response // from routes that will be automatically transformed to their JSON form. if ($this->shouldBeJson($content)) { $this->header('Content-Type', 'application/json'); null $content = $this->morphToJson($content); null if ($content === false) { throw new InvalidArgumentException(json_last_error_msg()); } } null // If this content implements the "Renderable" interface then we will call the // render method on the object so we will avoid any "__toString" exceptions // that might be thrown and have their errors obscured by PHP's handling. elseif ($content instanceof Renderable) { $content = $content->render(); } null parent::setContent($content); null return $this; } null /** * Determine if the given content should be turned into JSON. * * @param  mixed  $content * @return bool */ protected function shouldBeJson($content) callback null null false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Response.php 35 __construct Illuminate\Http\Response null /** * Create a new HTTP response. * * @param  mixed  $content * @param  int  $status * @param  array  $headers * @return void * * @throws \InvalidArgumentException */ public function __construct($content = '', $status = 200, array $headers = []) { $this->headers = new ResponseHeaderBag($headers); null $this->setContent($content); $this->setStatusCode($status); $this->setProtocolVersion('1.0'); } null /** * Set the content on the response. * * @param  mixed  $content * @return $this * * @throws \InvalidArgumentException */ public function setContent(mixed $content): static { null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 918 toResponse Illuminate\Routing\Router if ($response instanceof PsrResponseInterface) { $response = (new HttpFoundationFactory)->createResponse($response); } elseif ($response instanceof Model && $response->wasRecentlyCreated) { $response = new JsonResponse($response, 201); } elseif ($response instanceof Stringable) { $response = new Response($response->__toString(), 200, ['Content-Type' => 'text/html']); } elseif (! $response instanceof SymfonyResponse && ($response instanceof Arrayable || $response instanceof Jsonable || $response instanceof ArrayObject || $response instanceof JsonSerializable || $response instanceof stdClass || is_array($response))) { $response = new JsonResponse($response); } elseif (! $response instanceof SymfonyResponse) { $response = new Response($response, 200, ['Content-Type' => 'text/html']); } null if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) { $response->setNotModified(); } null return $response->prepare($request); } null /** * Substitute the route bindings onto the route. * * @param  \Illuminate\Routing\Route  $route * @return \Illuminate\Routing\Route null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 885 prepareResponse Illuminate\Routing\Router { return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all(); } null /** * Create a response instance from the given value. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { $this->events->dispatch(new PreparingResponse($request, $response)); null return tap(static::toResponse($request, $response), function ($response) use ($request) { $this->events->dispatch(new ResponsePrepared($request, $response)); }); } null /** * Static version of prepareResponse. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public static function toResponse($request, $response) { if ($response instanceof Responsable) { null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 805 Illuminate\Routing\{closure} Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 144 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline return $this->then(function ($passable) { return $passable; }); } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\boost\src\Middleware\InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Middleware\SubstituteBindings.php 50 handle Illuminate\Routing\Middleware\SubstituteBindings public function __construct(Registrar $router) { $this->router = $router; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { try { $this->router->substituteBindings($route = $request->route()); null $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Auth\Middleware\Authenticate.php 57 handle Illuminate\Auth\Middleware\Authenticate null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @param  string[]  ...$guards * @return mixed * * @throws \Illuminate\Auth\AuthenticationException */ public function handle($request, Closure $next, ...$guards) { $this->authenticate($request, $guards); null return $next($request); } null /** * Determine if the user is logged in to any of the given guards. * * @param  \Illuminate\Http\Request  $request * @param  array  $guards * @return void * * @throws \Illuminate\Auth\AuthenticationException */ protected function authenticate($request, array $guards) { if (empty($guards)) { arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false guards  array false true false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\VerifyCsrfToken.php 78 handle Illuminate\Foundation\Http\Middleware\VerifyCsrfToken * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Middleware\ShareErrorsFromSession.php 49 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // Putting the errors in the view for every view allows the developer to just // assume that some errors are always available, which is convenient since // they don't have to continually run checks for the presence of errors. null return $next($request); } } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php 121 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // Again, if the session has been configured we will need to close out the session // so that the attributes may be persisted to some storage medium. We will also // add the session identifier cookie to the application response headers now. $this->saveSession($request); null return $response; } null /** arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php 64 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * Handle the given request within session state. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleRequestWhileBlocking(Request $request, $session, Closure $next) { if (! $request->route() instanceof Route) { return; request GET http://qilqana.test/charges Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse.php 37 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies * @return void */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Cookie\Middleware\EncryptCookies.php 67 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * Decrypt the cookies on the request. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @return \Symfony\Component\HttpFoundation\Request */ protected function decrypt(Request $request) { foreach ($request->cookies as $key => $cookie) { if ($this->isDisabled($key)) { continue; } arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 119 then Illuminate\Pipeline\Pipeline return $this; } null /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null return $pipeline($this->passable); } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { return $this->then(function ($passable) { return $passable; }); } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 805 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php:805-807 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 784 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * Run the given route within a Stack "onion" instance. * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 748 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * Dispatch the request to a route and return the response. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request)); } null /** * Find the route matching a given request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Routing\Route */ protected function findRoute($request) { $this->events->dispatch(new Routing($request)); null $this->current = $route = $this->routes->match($request); null request GET http://qilqana.test/charges Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 737 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * Dispatch the request to a route and return the response. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request)); } null /** request GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 200 Illuminate\Foundation\Http\{closure} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * Call the terminate method on any terminable middleware. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Http\Response  $response * @return void */ public function terminate($request, $response) { $this->terminateMiddleware($request, $response); null request GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 144 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline return $this->then(function ($passable) { return $passable; }); } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TrimStrings.php 40 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { if (in_array($key, $this->except, true) || ! is_string($value)) { return $value; } request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ValidatePostSize.php 27 handle Illuminate\Foundation\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException; } null return $next($request); } null /** * Determine the server 'post_max_size' as bytes. * * @return int */ protected function getPostMaxSize() { if (is_numeric($postMaxSize = ini_get('post_max_size'))) { return (int) $postMaxSize; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance.php 99 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * Determine if the incoming request has a maintenance mode bypass cookie. * * @param  \Illuminate\Http\Request  $request * @param  array  $data * @return bool */ protected function hasValidBypassCookie($request, array $data) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Middleware\HandleCors.php 49 handle Illuminate\Http\Middleware\HandleCors { $this->container = $container; $this->cors = $cors; } null /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Middleware\TrustProxies.php 39 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * Sets the trusted proxies on the request. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function setTrustedProxyIpAddresses(Request $request) { $trustedIps = $this->proxies() ?: config('trustedproxy.proxies'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 119 then Illuminate\Pipeline\Pipeline return $this; } null /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null return $pipeline($this->passable); } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { return $this->then(function ($passable) { return $passable; }); } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Facade::clearResolvedInstance('request'); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php:197-201 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://qilqana.test/charges Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\public\index.php 51 [top] null | | Composer provides a convenient, automatically generated class loader for | this application. We just need to utilize it! We'll simply require it | into the script here so we don't need to manually load our classes. | */ null require __DIR__.'/../vendor/autoload.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request using | the application's HTTP kernel. Then, we will send the response back | to this client's browser, allowing them to enjoy our application. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() )->send(); null $kernel->terminate($request, $response); null  true http://qilqana.test/charges null GET Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0    qilqana.test keep-alive max-age=0 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 http://qilqana.test/charges gzip, deflate es-419,es;q=0.9,en;q=0.8,ja;q=0.7,th;q=0.6,ko;q=0.5 <CENSORED> 1|LMdigGaD4gInPG7UFT4HNiNSjzg9MiGxyUL8xYezcWkTiJpCTMFS5tsxjGPG|$2y$12$WbJyS7sgPdXNvaihX7CNXe9HlrIjg9GQx9pfIqWmY6LTNrDNKzzEa u1GnxmSu44kIW5DOHkL8h3Ritba0zDkFribOr0JX KE8nAtbHhTVpq7GkZNPabTwwlapPT2QsgK4zaLQn u1GnxmSu44kIW5DOHkL8h3Ritba0zDkFribOr0JX 1 http://qilqana.test/charges   charges.index  App\Http\Controllers\ChargeController@index web auth 1 ADMIN ADMIN 000000000 2026-04-20T00:59:38.000000Z 2026-04-20T00:59:38.000000Z 1 ADMINISTRADOR web 2026-04-20T00:59:38.000000Z 2026-04-20T00:59:38.000000Z App\Models\User 1 1 C:\laragon\www\Qilqana\resources\views\charges\partials\item-actions.blade.php <pre class=sf-dump id=sf-dump-715841818 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\ViewErrorBag</span> {<a class=sf-dump-ref>#1363</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">bags</span>: []
</samp>}
</pre><script>Sfdump("sf-dump-715841818", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-291389903 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1486</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-291389903", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1989561804 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1522</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-1989561804", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1811139482 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1545</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-1811139482", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-194946877 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1454</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:2</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1437</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
    <span class=sf-dump-index>1</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1438</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-194946877", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1143563992 data-indent-pad="  "><span class=sf-dump-num>2</span>
</pre><script>Sfdump("sf-dump-1143563992", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1288264608 data-indent-pad="  "><span class=sf-dump-num>2</span>
</pre><script>Sfdump("sf-dump-1288264608", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1818316246 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1818316246", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-983502474 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1555</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\User
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">User</span></span> {<a class=sf-dump-ref>#1556</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="5 characters">users</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: []
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: <span class=sf-dump-note>array:2</span> [ &#8230;2]
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:4</span> [ &#8230;4]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">rememberTokenName</span>: "<span class=sf-dump-str title="14 characters">remember_token</span>"
      #<span class=sf-dump-protected title="Protected property">accessToken</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">roleClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">permissionClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardPermissionsIndex</span>: <span class=sf-dump-const title="Uninitialized property">? array</span>
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-983502474", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-837862503 data-indent-pad="  "><span class=sf-dump-note>array:1</span> [<samp data-depth=1 class=sf-dump-expanded>
  <span class=sf-dump-index>0</span> => "<span class=sf-dump-str title="4 characters">2026</span>"
</samp>]
</pre><script>Sfdump("sf-dump-837862503", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1588756814 data-indent-pad="  "><span class=sf-dump-num>5</span>
</pre><script>Sfdump("sf-dump-1588756814", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-551736210 data-indent-pad="  "><span class=sf-dump-const>true</span>
</pre><script>Sfdump("sf-dump-551736210", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-2102094291 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-2102094291", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-766837955 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-766837955", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1690120059 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-1690120059", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-186096483 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-186096483", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-2124358610 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-2124358610", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-888139652 data-indent-pad="  "><span class=sf-dump-num>1</span>
</pre><script>Sfdump("sf-dump-888139652", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-488040981 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1603</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-488040981", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1261751449 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1261751449", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1265884481 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1265884481", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-257883175 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-257883175", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1921497159 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1921497159", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-822768470 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-822768470", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1540194512 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1540194512", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-44532656 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-44532656", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-512960447 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-512960447", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-194911060 data-indent-pad="  "><span class=sf-dump-const>true</span>
</pre><script>Sfdump("sf-dump-194911060", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-156046683 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1454</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:2</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1437</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
    <span class=sf-dump-index>1</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1438</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-156046683", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-332301724 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-332301724", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-189624901 data-indent-pad="  ">{<a class=sf-dump-ref>#1605</a><samp data-depth=1 class=sf-dump-expanded>
  +"<span class=sf-dump-public title="Runtime added dynamic property">iteration</span>": <span class=sf-dump-num>1</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">index</span>": <span class=sf-dump-num>0</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">remaining</span>": <span class=sf-dump-num>1</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">count</span>": <span class=sf-dump-num>2</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">first</span>": <span class=sf-dump-const>true</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">last</span>": <span class=sf-dump-const>false</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">odd</span>": <span class=sf-dump-const>true</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">even</span>": <span class=sf-dump-const>false</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">depth</span>": <span class=sf-dump-num>1</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">parent</span>": <span class=sf-dump-const>null</span>
</samp>}
</pre><script>Sfdump("sf-dump-189624901", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1840623613 data-indent-pad="  "><span class=sf-dump-const>false</span>
</pre><script>Sfdump("sf-dump-1840623613", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1017425411 data-indent-pad="  "><span class=sf-dump-note>App\Models\Charge</span> {<a class=sf-dump-ref>#1437</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
  #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
  #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
  #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
  +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
  #<span class=sf-dump-protected title="Protected property">with</span>: []
  #<span class=sf-dump-protected title="Protected property">withCount</span>: []
  +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
  +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
  +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>id</span>" => <span class=sf-dump-num>2</span>
    "<span class=sf-dump-key>n_charge</span>" => "<span class=sf-dump-str>2</span>"
    "<span class=sf-dump-key>asunto</span>" => "<span class=sf-dump-str title="6 characters">asunto</span>"
    "<span class=sf-dump-key>charge_period</span>" => "<span class=sf-dump-str title="4 characters">2026</span>"
    "<span class=sf-dump-key>document_date</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>tipo_interesado</span>" => "<span class=sf-dump-str title="15 characters">Persona Natural</span>"
    "<span class=sf-dump-key>user_id</span>" => <span class=sf-dump-num>1</span>
    "<span class=sf-dump-key>natural_person_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>legal_entity_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>resolucion_id</span>" => <span class=sf-dump-num>230642</span>
    "<span class=sf-dump-key>created_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
    "<span class=sf-dump-key>updated_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>id</span>" => <span class=sf-dump-num>2</span>
    "<span class=sf-dump-key>n_charge</span>" => "<span class=sf-dump-str>2</span>"
    "<span class=sf-dump-key>asunto</span>" => "<span class=sf-dump-str title="6 characters">asunto</span>"
    "<span class=sf-dump-key>charge_period</span>" => "<span class=sf-dump-str title="4 characters">2026</span>"
    "<span class=sf-dump-key>document_date</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>tipo_interesado</span>" => "<span class=sf-dump-str title="15 characters">Persona Natural</span>"
    "<span class=sf-dump-key>user_id</span>" => <span class=sf-dump-num>1</span>
    "<span class=sf-dump-key>natural_person_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>legal_entity_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>resolucion_id</span>" => <span class=sf-dump-num>230642</span>
    "<span class=sf-dump-key>created_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
    "<span class=sf-dump-key>updated_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">changes</span>: []
  #<span class=sf-dump-protected title="Protected property">casts</span>: []
  #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
  #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
  #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
  #<span class=sf-dump-protected title="Protected property">appends</span>: []
  #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
  #<span class=sf-dump-protected title="Protected property">observables</span>: []
  #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>user</span>" => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\User
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">User</span></span> {<a class=sf-dump-ref>#1442</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="5 characters">users</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: []
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: <span class=sf-dump-note>array:2</span> [ &#8230;2]
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:4</span> [ &#8230;4]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">rememberTokenName</span>: "<span class=sf-dump-str title="14 characters">remember_token</span>"
      #<span class=sf-dump-protected title="Protected property">accessToken</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">roleClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">permissionClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardPermissionsIndex</span>: <span class=sf-dump-const title="Uninitialized property">? array</span>
    </samp>}
    "<span class=sf-dump-key>naturalPerson</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>legalEntity</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>signature</span>" => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Signature
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Signature</span></span> {<a class=sf-dump-ref>#1457</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="10 characters">signatures</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:15</span> [ &#8230;15]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:15</span> [ &#8230;15]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:2</span> [ &#8230;2]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
    "<span class=sf-dump-key>resolucion</span>" => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Resolucion
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Resolucion</span></span> {<a class=sf-dump-ref>#1469</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="11 characters">resolucions</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: []
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:7</span> [ &#8230;7]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">dates</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">touches</span>: []
  +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
  +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">hidden</span>: []
  #<span class=sf-dump-protected title="Protected property">visible</span>: []
  #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => "<span class=sf-dump-str title="8 characters">n_charge</span>"
    <span class=sf-dump-index>1</span> => "<span class=sf-dump-str title="13 characters">charge_period</span>"
    <span class=sf-dump-index>2</span> => "<span class=sf-dump-str title="13 characters">document_date</span>"
    <span class=sf-dump-index>3</span> => "<span class=sf-dump-str title="7 characters">user_id</span>"
    <span class=sf-dump-index>4</span> => "<span class=sf-dump-str title="13 characters">resolucion_id</span>"
    <span class=sf-dump-index>5</span> => "<span class=sf-dump-str title="15 characters">tipo_interesado</span>"
    <span class=sf-dump-index>6</span> => "<span class=sf-dump-str title="17 characters">natural_person_id</span>"
    <span class=sf-dump-index>7</span> => "<span class=sf-dump-str title="15 characters">legal_entity_id</span>"
    <span class=sf-dump-index>8</span> => "<span class=sf-dump-str title="6 characters">asunto</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => "<span class=sf-dump-str>*</span>"
  </samp>]
</samp>}
</pre><script>Sfdump("sf-dump-1017425411", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1471774139 data-indent-pad="  "><span class=sf-dump-const>true</span>
</pre><script>Sfdump("sf-dump-1471774139", {"maxDepth":3,"maxStringLength":160})</script> 8.2.10 10.50.2 es false true local   select * from `sessions` where `id` = ? limit 1 24.82 mysql KE8nAtbHhTVpq7GkZNPabTwwlapPT2QsgK4zaLQn 1777124110.7331 select * from `users` where `id` = ? limit 1 0.86 mysql 1 1777124110.7471 select `value` from `settings` where `key` = ? limit 1 0.63 mysql charge_period 1777124110.7528 select `roles`.*, `model_has_roles`.`model_id` as `pivot_model_id`, `model_has_roles`.`role_id` as `pivot_role_id`, `model_has_roles`.`model_type` as `pivot_model_type` from `roles` inner join `model_has_roles` on `roles`.`id` = `model_has_roles`.`role_id` where `model_has_roles`.`model_id` in (1) and `model_has_roles`.`model_type` = ? 1.19 mysql App\Models\User 1777124110.7632 select * from `charges` where `resolucion_id` is not null and (`charge_period` = ? or `charge_period` is null) order by `created_at` desc 0.83 mysql 2026 1777124110.7664 select * from `users` where `users`.`id` in (1) 1.41 mysql  1777124110.7697 select * from `signatures` where `signatures`.`charge_id` in (1, 2) 1.02 mysql  1777124110.7749 select * from `users` where `users`.`id` in (1) 0.66 mysql  1777124110.7762 select * from `users` where `users`.`id` in (1) 0.61 mysql  1777124110.7775 select * from `resolucions` where `resolucions`.`id` in (224071, 230642) 0.63 mysql  1777124110.7786 select * from `charges` where `user_id` = ? and `resolucion_id` is null and (`charge_period` = ? or `charge_period` is null) order by `created_at` desc 0.65 mysql 1 2026 1777124110.7797 select * from `charges` where `resolucion_id` is null and exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `assigned_to` = ?) and `tipo_interesado` not in (?, ?) and (`charge_period` = ? or `charge_period` is null) and exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` != ?) order by `created_at` desc 0.82 mysql 1 Persona Juridica Persona Natural 2026 rechazado 1777124110.7812 select * from `charges` where `user_id` = ? and `resolucion_id` is null and `tipo_interesado` in (?, ?) and (`charge_period` = ? or `charge_period` is null) order by `created_at` desc 0.68 mysql 1 Persona Juridica Persona Natural 2026 1777124110.7823 select count(*) as aggregate from `charges` where exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` = ?) 0.88 mysql firmado 1777124110.784 select count(*) as aggregate from `charges` where exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` = ?) 1.06 mysql pendiente 1777124110.786 select * from `users` where `id` != ? order by `name` asc 0.72 mysql 1 1777124110.787 select distinct `charge_period` from `charges` where `charge_period` is not null order by `charge_period` desc 0.59 mysql  1777124110.7879 select `value` from `settings` where `key` = ? limit 1 0.56 mysql charges_refresh_interval 1777124110.7887 local null null C:\laragon\www\Qilqana null 48a6bd3e-7d59-4e32-8594-5d5d757182d7 null null phpstorm auto false C:\laragon\www\Qilqana null true false \ Clipboard %path:%line true Sublime subl://open?url=file://%path&line=%line TextMate txmt://open?url=file://%path&line=%line Emacs emacs://open?url=file://%path&line=%line MacVim mvim://open/?url=file://%path&line=%line PhpStorm phpstorm://open?file=%path&line=%line PHPStorm Remote javascript:r = new XMLHttpRequest;r.open("get", "http://localhost:63342/api/file/%path:%line");r.send() Idea idea://open?file=%path&line=%line VS Code vscode://file/%path:%line VS Code Insiders vscode-insiders://file/%path:%line VS Code Remote vscode://vscode-remote/%path:%line VS Code Insiders Remote vscode-insiders://vscode-remote/%path:%line VS Codium vscodium://file/%path:%line Cursor cursor://file/%path:%line Atom atom://core/open/file?filename=%path&line=%line Nova nova://open?path=%path&line=%line NetBeans netbeans://open/?f=%path:%line Zed zed://file/%path:%line Windsurf windsurf://file/%path:%line Xdebug xdebug://%path@%line https://flareapp.io/api/public-reports  /_ignition/update-config C:\laragon\www\Qilqana\app\Models\Charge.php 68 handleError Illuminate\Foundation\Bootstrap\HandleExceptions { return $this->hasOne(Signature::class); } null /* Accessors para optimizar vistas */ null public function getInteresadoLabelAttribute(): string { switch ($this->tipo_interesado) { case 'Persona Juridica': return $this->legalEntity?->razon_social ?: $this->legalEntity?->ruc ?: '---'; case 'Persona Natural': $person = $this->naturalPerson; $fullName = trim(($person->nombres ?? '').' '.($person->apellido_paterno ?? '').' '.($person->apellido_materno ?? '')); null return $fullName !== '' ? $fullName : ($person->dni ?: '---'); case 'Trabajador UGEL': return $this->user?->name.' '.$this->user?->last_name ?: '---'; default: return '---'; } } null public function getHasSignatureAttribute(): bool { return (bool) ($this->signature?->signature_root); } null public function getHasCartaPoderAttribute(): bool {  true app\Models\Charge.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Bootstrap\HandleExceptions.php 255 Illuminate\Foundation\Bootstrap\{closure} Illuminate\Foundation\Bootstrap\HandleExceptions * @return \Symfony\Component\ErrorHandler\Error\FatalError */ protected function fatalErrorFromPhpError(array $error, $traceOffset = null) { return new FatalError($error['message'], 0, $error, $traceOffset); } null /** * Forward a method call to the given method if an application instance exists. * * @return callable */ protected function forwardsTo($method) { return fn (...$arguments) => static::$app ? $this->{$method}(...$arguments) : false; } null /** * Determine if the error level is a deprecation. * * @param  int  $level * @return bool */ protected function isDeprecation($level) { return in_array($level, [E_DEPRECATED, E_USER_DEPRECATED]); } null level 2 int false false false message Attempt to read property "dni" on null string false false false file C:\laragon\www\Qilqana\app\Models\Charge.php string false false false line 68 int false false false false vendor\laravel\framework\src\Illuminate\Foundation\Bootstrap\HandleExceptions.php C:\laragon\www\Qilqana\app\Models\Charge.php 68 getInteresadoLabelAttribute App\Models\Charge { return $this->hasOne(Signature::class); } null /* Accessors para optimizar vistas */ null public function getInteresadoLabelAttribute(): string { switch ($this->tipo_interesado) { case 'Persona Juridica': return $this->legalEntity?->razon_social ?: $this->legalEntity?->ruc ?: '---'; case 'Persona Natural': $person = $this->naturalPerson; $fullName = trim(($person->nombres ?? '').' '.($person->apellido_paterno ?? '').' '.($person->apellido_materno ?? '')); null return $fullName !== '' ? $fullName : ($person->dni ?: '---'); case 'Trabajador UGEL': return $this->user?->name.' '.$this->user?->last_name ?: '---'; default: return '---'; } } null public function getHasSignatureAttribute(): bool { return (bool) ($this->signature?->signature_root); } null public function getHasCartaPoderAttribute(): bool { arg0 2 int false false false arg1 Attempt to read property "dni" on null string false false false arg2 C:\laragon\www\Qilqana\app\Models\Charge.php string false false false arg3 68 int false false false true app\Models\Charge.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 658 mutateAttribute Illuminate\Database\Eloquent\Model return static::$getAttributeMutatorCache[get_class($this)][$key] = false; } null return static::$getAttributeMutatorCache[get_class($this)][$key] = is_callable($this->{Str::camel($key)}()->get); } null /** * Get the value of an attribute using its mutator. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function mutateAttribute($key, $value) { return $this->{'get'.Str::studly($key).'Attribute'}($value); } null /** * Get the value of an "Attribute" return type marked attribute using its mutator. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function mutateAttributeMarkedAttribute($key, $value) { if (array_key_exists($key, $this->attributeCastCache)) { return $this->attributeCastCache[$key]; } arg0 null null false false false false vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 2124 transformModelValue Illuminate\Database\Eloquent\Model } null /** * Transform a raw model value using mutators, casts, etc. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transformModelValue($key, $value) { // If the attribute has a get mutator, we will call that then return what // it returns as the value, which is useful for transforming values on // retrieval from the model to a form that is more useful for usage. if ($this->hasGetMutator($key)) { return $this->mutateAttribute($key, $value); } elseif ($this->hasAttributeGetMutator($key)) { return $this->mutateAttributeMarkedAttribute($key, $value); } null // If the attribute exists within the cast array, we will convert it to // an appropriate native PHP type dependent upon the associated value // given with the key in the pair. Dayle made this comment line up. if ($this->hasCast($key)) { if (static::preventsAccessingMissingAttributes() && ! array_key_exists($key, $this->attributes) && ($this->isEnumCastable($key) || in_array($this->getCastType($key), static::$primitiveCastTypes))) { $this->throwMissingAttributeExceptionIfApplicable($key); } key interesado_label string false false false value null null false false false false vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 489 getAttributeValue Illuminate\Database\Eloquent\Model null throw new MissingAttributeException($this, $key); } null return null; } null /** * Get a plain attribute (not a relationship). * * @param  string  $key * @return mixed */ public function getAttributeValue($key) { return $this->transformModelValue($key, $this->getAttributeFromArray($key)); } null /** * Get an attribute from the $attributes array. * * @param  string  $key * @return mixed */ protected function getAttributeFromArray($key) { return $this->getAttributes()[$key] ?? null; } null /** key interesado_label string false false false value null null false false false false vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php 443 getAttribute Illuminate\Database\Eloquent\Model */ public function getAttribute($key) { if (! $key) { return; } null // If the attribute exists in the attribute array or has a "get" mutator we will // get the attribute's value. Otherwise, we will proceed as if the developers // are asking for a relationship's value. This covers both types of values. if (array_key_exists($key, $this->attributes) || array_key_exists($key, $this->casts) || $this->hasGetMutator($key) || $this->hasAttributeMutator($key) || $this->isClassCastable($key)) { return $this->getAttributeValue($key); } null // Here we will determine if the model base class itself contains this given key // since we don't want to treat any of those methods as relationships because // they are all intended as helper methods and none of these are relations. if (method_exists(self::class, $key)) { return $this->throwMissingAttributeExceptionIfApplicable($key); } null return $this->isRelation($key) || $this->relationLoaded($key) ? $this->getRelationValue($key) : $this->throwMissingAttributeExceptionIfApplicable($key); } null key interesado_label string false false false false vendor\laravel\framework\src\Illuminate\Database\Eloquent\Concerns\HasAttributes.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Database\Eloquent\Model.php 2227 __get Illuminate\Database\Eloquent\Model * @return string */ public function broadcastChannel() { return str_replace('\\', '.', get_class($this)).'.'.$this->getKey(); } null /** * Dynamically retrieve attributes on the model. * * @param  string  $key * @return mixed */ public function __get($key) { return $this->getAttribute($key); } null /** * Dynamically set attributes on the model. * * @param  string  $key * @param  mixed  $value * @return void */ public function __set($key, $value) { $this->setAttribute($key, $value); } null key interesado_label string false false false false vendor\laravel\framework\src\Illuminate\Database\Eloquent\Model.php C:\laragon\www\Qilqana\resources\views\charges\partials\item-actions.blade.php 40 require null <span class="material-symbols-outlined">block</span> </button> @endif null @include('charges.forms.delete', [ 'charge' => $charge, 'disabled' => ($charge->signature?->signature_status !== 'pendiente' && !Auth::user()->hasRole('ADMINISTRADOR')), ]) </div> null <div class="mt-1"> <button type="button" class="btn btn-outline-secondary btn-sm btn-view-charge-details" title="Ver detalles" data-charge-id="{{ $charge->id }}" data-n-charge="{{ $charge->n_charge }}" data-interesado="{{ $charge->interesado_label }}" data-tipo="{{ $charge->tipo_interesado }}" data-asunto="{{ $charge->asunto }}" data-fecha="{{ $charge->document_date ? \Carbon\Carbon::parse($charge->document_date)->format('d/m/Y') : '---' }}" data-user="{{ $charge->user?->name }} {{ $charge->user?->last_name }}" data-status="{{ ucfirst($charge->signature?->signature_status ?? 'pendiente') }}" data-has-signature="{{ $charge->has_signature ? '1' : '0' }}" data-signature-url="{{ route('charges.file.signature', $charge) }}" data-signer="{{ $charge->signature?->signer?->name ?? '' }} {{ $charge->signature?->signer?->last_name ?? '' }}" data-titularidad="{{ $charge->signature?->titularidad ? '1' : '0' }}" data-parentesco="{{ $charge->signature?->parentesco ?? '' }}" data-titular-name="{{ $charge->resolucion?->nombres_apellidos ?? $charge->naturalPerson?->full_name ?? '' }}" data-has-evidence="{{ $charge->has_evidence ? '1' : '0' }}" data-evidence-url="{{ route('charges.file.evidence', $charge) }}" data-has-carta-poder="{{ $charge->has_carta_poder ? '1' : '0' }}" key interesado_label string false false false true resources\views\charges\partials\item-actions.blade.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\aee3964602ead821ce0538ab38b5b82c.php string false false false false vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/aee3964602ead821ce0538ab38b5b82c.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/aee3964602ead821ce0538ab38b5b82c.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/partials/item-actions.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\resources\views\charges\partials\lists\resolution.blade.php 74 require null <div class="d-flex justify-content-between align-items-start gap-2"> <div> <div class="small text-muted">Cargo #{{ $charge->n_charge }}</div> <div class="fw-semibold">RD: {{ $charge->resolucion?->rd }}</div> <div class="small text-muted">{{ $charge->resolucion?->periodo }}</div> </div> @include('charges.partials.status-badge', [ 'status' => $charge->signature?->signature_status, ]) </div> <div class="mt-2"> <div class="small text-muted">Interesado: {{ $charge->resolucion?->nombres_apellidos }} </div> </div> <div class="mt-3"> @include('charges.partials.item-actions', [ 'charge' => $charge, 'canSign' => true, ]) </div> </div> </div> @empty <div class="text-center text-muted py-4">No hay cargos de resoluciones.</div> @endforelse </div> null {{-- VISTA ESCRITORIO --}} <div class="table-responsive d-none d-md-block"> <table class="table align-middle table-hover mb-0"> callback null null false false false true resources\views\charges\partials\lists\resolution.blade.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\9950652d1e1370f0a05e8d8b1308af59.php string false false false false vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/9950652d1e1370f0a05e8d8b1308af59.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/9950652d1e1370f0a05e8d8b1308af59.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/partials/lists/resolution.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 1 object (Illuminate\Database\Eloquent\Collection) 0 0 0 0 array false false true false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\resources\views\charges\partials\dashboard.blade.php 127 require null </button> </li> <li class="nav-item" role="presentation"> <button class="nav-link d-flex align-items-center gap-2" id="created-tab" data-bs-toggle="tab" data-bs-target="#created-tab-pane" type="button" role="tab" aria-controls="created-tab-pane" aria-selected="false"> Creados <span class="badge bg-secondary ms-1">{{ $createdTotal }}</span> </button> </li> <li class="nav-item" role="presentation"> <button class="nav-link d-flex align-items-center gap-2" id="sent-tab" data-bs-toggle="tab" data-bs-target="#sent-tab-pane" type="button" role="tab" aria-controls="sent-tab-pane" aria-selected="false"> Enviados <span class="badge bg-secondary ms-1">{{ $sentTotal }}</span> </button> </li> </ul> null <div class="tab-content" id="charges-tabs-content"> @if ($canViewResolutionCharges) @include('charges.partials.lists.resolution', ['active' => true]) @endif null @include('charges.partials.lists.received', ['active' => !$canViewResolutionCharges]) null @include('charges.partials.lists.created') null @include('charges.partials.lists.sent') </div> null callback null null false false false true resources\views\charges\partials\dashboard.blade.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\5ad9442a6a0a540f7d994a78d05830d2.php string false false false false vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/5ad9442a6a0a540f7d994a78d05830d2.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/5ad9442a6a0a540f7d994a78d05830d2.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/partials/dashboard.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\resources\views\charges\index.blade.php 42 require null <h5 class="mb-2">Errores durante la importacion:</h5> <ul class="mb-0"> @foreach (session('errores') as $error) <li>{{ $error }}</li> @endforeach </ul> </div> @endif null @if (session('success')) <div class="alert alert-success shadow-sm"> {{ session('success') }} </div> @endif <div id="charges-dashboard" data-refresh-interval="{{ $refreshIntervalSeconds ?? 5 }}" data-refresh-url="{{ route('charges.refresh') }}"> @include('charges.partials.dashboard') </div> </div> {{-- Formularios de crear cargos --}} @include('charges.forms.create') null {{-- Formularios de editar cargos --}} @include('charges.forms.edit') null {{-- Formularios de firmar cargos --}} @include('charges.forms.sign') null {{-- Formularios de rechazar cargos --}} @include('charges.forms.reject') null callback null null false false false true resources\views\charges\index.blade.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 123 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 C:\laragon\www\Qilqana\storage\framework\views\15d308017064a4a142ff7af4cc62d614.php string false false false false vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/15d308017064a4a142ff7af4cc62d614.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/15d308017064a4a142ff7af4cc62d614.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/charges/index.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) object (Illuminate\Database\Eloquent\Collection) 2 2 0 object (Illuminate\Database\Eloquent\Collection) array (size=1) 5 true 2026 2026 2026 2026 2026 array false false false false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Response.php 69 setContent Illuminate\Http\Response // from routes that will be automatically transformed to their JSON form. if ($this->shouldBeJson($content)) { $this->header('Content-Type', 'application/json'); null $content = $this->morphToJson($content); null if ($content === false) { throw new InvalidArgumentException(json_last_error_msg()); } } null // If this content implements the "Renderable" interface then we will call the // render method on the object so we will avoid any "__toString" exceptions // that might be thrown and have their errors obscured by PHP's handling. elseif ($content instanceof Renderable) { $content = $content->render(); } null parent::setContent($content); null return $this; } null /** * Determine if the given content should be turned into JSON. * * @param  mixed  $content * @return bool */ protected function shouldBeJson($content) callback null null false false false false vendor\laravel\framework\src\Illuminate\Http\Response.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Response.php 35 __construct Illuminate\Http\Response null /** * Create a new HTTP response. * * @param  mixed  $content * @param  int  $status * @param  array  $headers * @return void * * @throws \InvalidArgumentException */ public function __construct($content = '', $status = 200, array $headers = []) { $this->headers = new ResponseHeaderBag($headers); null $this->setContent($content); $this->setStatusCode($status); $this->setProtocolVersion('1.0'); } null /** * Set the content on the response. * * @param  mixed  $content * @return $this * * @throws \InvalidArgumentException */ public function setContent(mixed $content): static { null false vendor\laravel\framework\src\Illuminate\Http\Response.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 918 toResponse Illuminate\Routing\Router if ($response instanceof PsrResponseInterface) { $response = (new HttpFoundationFactory)->createResponse($response); } elseif ($response instanceof Model && $response->wasRecentlyCreated) { $response = new JsonResponse($response, 201); } elseif ($response instanceof Stringable) { $response = new Response($response->__toString(), 200, ['Content-Type' => 'text/html']); } elseif (! $response instanceof SymfonyResponse && ($response instanceof Arrayable || $response instanceof Jsonable || $response instanceof ArrayObject || $response instanceof JsonSerializable || $response instanceof stdClass || is_array($response))) { $response = new JsonResponse($response); } elseif (! $response instanceof SymfonyResponse) { $response = new Response($response, 200, ['Content-Type' => 'text/html']); } null if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) { $response->setNotModified(); } null return $response->prepare($request); } null /** * Substitute the route bindings onto the route. * * @param  \Illuminate\Routing\Route  $route * @return \Illuminate\Routing\Route null false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 885 prepareResponse Illuminate\Routing\Router { return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all(); } null /** * Create a response instance from the given value. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { $this->events->dispatch(new PreparingResponse($request, $response)); null return tap(static::toResponse($request, $response), function ($response) use ($request) { $this->events->dispatch(new ResponsePrepared($request, $response)); }); } null /** * Static version of prepareResponse. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public static function toResponse($request, $response) { if ($response instanceof Responsable) { null false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 805 Illuminate\Routing\{closure} Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 144 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline return $this->then(function ($passable) { return $passable; }); } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\boost\src\Middleware\InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\boost\src\Middleware\InjectBoost.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Middleware\SubstituteBindings.php 50 handle Illuminate\Routing\Middleware\SubstituteBindings public function __construct(Registrar $router) { $this->router = $router; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { try { $this->router->substituteBindings($route = $request->route()); null $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Routing\Middleware\SubstituteBindings.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Auth\Middleware\Authenticate.php 57 handle Illuminate\Auth\Middleware\Authenticate null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @param  string[]  ...$guards * @return mixed * * @throws \Illuminate\Auth\AuthenticationException */ public function handle($request, Closure $next, ...$guards) { $this->authenticate($request, $guards); null return $next($request); } null /** * Determine if the user is logged in to any of the given guards. * * @param  \Illuminate\Http\Request  $request * @param  array  $guards * @return void * * @throws \Illuminate\Auth\AuthenticationException */ protected function authenticate($request, array $guards) { if (empty($guards)) { arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Auth\Middleware\Authenticate.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false guards  array false true false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\VerifyCsrfToken.php 78 handle Illuminate\Foundation\Http\Middleware\VerifyCsrfToken * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\VerifyCsrfToken.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Middleware\ShareErrorsFromSession.php 49 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // Putting the errors in the view for every view allows the developer to just // assume that some errors are always available, which is convenient since // they don't have to continually run checks for the presence of errors. null return $next($request); } } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\View\Middleware\ShareErrorsFromSession.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php 121 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // Again, if the session has been configured we will need to close out the session // so that the attributes may be persisted to some storage medium. We will also // add the session identifier cookie to the application response headers now. $this->saveSession($request); null return $response; } null /** arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php 64 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * Handle the given request within session state. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleRequestWhileBlocking(Request $request, $session, Closure $next) { if (! $request->route() instanceof Route) { return; request GET http://qilqana.test/charges Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse.php 37 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies * @return void */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Cookie\Middleware\EncryptCookies.php 67 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * Decrypt the cookies on the request. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @return \Symfony\Component\HttpFoundation\Request */ protected function decrypt(Request $request) { foreach ($request->cookies as $key => $cookie) { if ($this->isDisabled($key)) { continue; } arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Cookie\Middleware\EncryptCookies.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 119 then Illuminate\Pipeline\Pipeline return $this; } null /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null return $pipeline($this->passable); } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { return $this->then(function ($passable) { return $passable; }); } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 805 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php:805-807 Closure false false false false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 784 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * Run the given route within a Stack "onion" instance. * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 748 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * Dispatch the request to a route and return the response. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request)); } null /** * Find the route matching a given request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Routing\Route */ protected function findRoute($request) { $this->events->dispatch(new Routing($request)); null $this->current = $route = $this->routes->match($request); null request GET http://qilqana.test/charges Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 737 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * Dispatch the request to a route and return the response. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request)); } null /** request GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 200 Illuminate\Foundation\Http\{closure} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * Call the terminate method on any terminable middleware. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Http\Response  $response * @return void */ public function terminate($request, $response) { $this->terminateMiddleware($request, $response); null request GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 144 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline return $this->then(function ($passable) { return $passable; }); } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TrimStrings.php 40 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { if (in_array($key, $this->except, true) || ! is_string($value)) { return $value; } request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TrimStrings.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ValidatePostSize.php 27 handle Illuminate\Foundation\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException; } null return $next($request); } null /** * Determine the server 'post_max_size' as bytes. * * @return int */ protected function getPostMaxSize() { if (is_numeric($postMaxSize = ini_get('post_max_size'))) { return (int) $postMaxSize; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ValidatePostSize.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance.php 99 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * Determine if the incoming request has a maintenance mode bypass cookie. * * @param  \Illuminate\Http\Request  $request * @param  array  $data * @return bool */ protected function hasValidBypassCookie($request, array $data) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Middleware\HandleCors.php 49 handle Illuminate\Http\Middleware\HandleCors { $this->container = $container; $this->cors = $cors; } null /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Http\Middleware\HandleCors.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Middleware\TrustProxies.php 39 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * Sets the trusted proxies on the request. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function setTrustedProxyIpAddresses(Request $request) { $trustedIps = $this->proxies() ?: config('trustedproxy.proxies'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Http\Middleware\TrustProxies.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/charges Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 119 then Illuminate\Pipeline\Pipeline return $this; } null /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null return $pipeline($this->passable); } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { return $this->then(function ($passable) { return $passable; }); } null arg0 GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Facade::clearResolvedInstance('request'); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php:197-201 Closure false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://qilqana.test/charges Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php C:\laragon\www\Qilqana\public\index.php 51 [top] null | | Composer provides a convenient, automatically generated class loader for | this application. We just need to utilize it! We'll simply require it | into the script here so we don't need to manually load our classes. | */ null require __DIR__.'/../vendor/autoload.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request using | the application's HTTP kernel. Then, we will send the response back | to this client's browser, allowing them to enjoy our application. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() )->send(); null $kernel->terminate($request, $response); null  true public\index.php http://qilqana.test/charges null GET Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0    select * from `sessions` where `id` = ? limit 1 24.82 mysql KE8nAtbHhTVpq7GkZNPabTwwlapPT2QsgK4zaLQn 1777124110.7331 select * from `users` where `id` = ? limit 1 0.86 mysql 1 1777124110.7471 select `value` from `settings` where `key` = ? limit 1 0.63 mysql charge_period 1777124110.7528 select `roles`.*, `model_has_roles`.`model_id` as `pivot_model_id`, `model_has_roles`.`role_id` as `pivot_role_id`, `model_has_roles`.`model_type` as `pivot_model_type` from `roles` inner join `model_has_roles` on `roles`.`id` = `model_has_roles`.`role_id` where `model_has_roles`.`model_id` in (1) and `model_has_roles`.`model_type` = ? 1.19 mysql App\Models\User 1777124110.7632 select * from `charges` where `resolucion_id` is not null and (`charge_period` = ? or `charge_period` is null) order by `created_at` desc 0.83 mysql 2026 1777124110.7664 select * from `users` where `users`.`id` in (1) 1.41 mysql  1777124110.7697 select * from `signatures` where `signatures`.`charge_id` in (1, 2) 1.02 mysql  1777124110.7749 select * from `users` where `users`.`id` in (1) 0.66 mysql  1777124110.7762 select * from `users` where `users`.`id` in (1) 0.61 mysql  1777124110.7775 select * from `resolucions` where `resolucions`.`id` in (224071, 230642) 0.63 mysql  1777124110.7786 select * from `charges` where `user_id` = ? and `resolucion_id` is null and (`charge_period` = ? or `charge_period` is null) order by `created_at` desc 0.65 mysql 1 2026 1777124110.7797 select * from `charges` where `resolucion_id` is null and exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `assigned_to` = ?) and `tipo_interesado` not in (?, ?) and (`charge_period` = ? or `charge_period` is null) and exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` != ?) order by `created_at` desc 0.82 mysql 1 Persona Juridica Persona Natural 2026 rechazado 1777124110.7812 select * from `charges` where `user_id` = ? and `resolucion_id` is null and `tipo_interesado` in (?, ?) and (`charge_period` = ? or `charge_period` is null) order by `created_at` desc 0.68 mysql 1 Persona Juridica Persona Natural 2026 1777124110.7823 select count(*) as aggregate from `charges` where exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` = ?) 0.88 mysql firmado 1777124110.784 select count(*) as aggregate from `charges` where exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` = ?) 1.06 mysql pendiente 1777124110.786 select * from `users` where `id` != ? order by `name` asc 0.72 mysql 1 1777124110.787 select distinct `charge_period` from `charges` where `charge_period` is not null order by `charge_period` desc 0.59 mysql  1777124110.7879 select `value` from `settings` where `key` = ? limit 1 0.56 mysql charges_refresh_interval 1777124110.7887   null qilqana.test keep-alive max-age=0 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 http://qilqana.test/charges gzip, deflate es-419,es;q=0.9,en;q=0.8,ja;q=0.7,th;q=0.6,ko;q=0.5 <CENSORED> 1|LMdigGaD4gInPG7UFT4HNiNSjzg9MiGxyUL8xYezcWkTiJpCTMFS5tsxjGPG|$2y$12$WbJyS7sgPdXNvaihX7CNXe9HlrIjg9GQx9pfIqWmY6LTNrDNKzzEa u1GnxmSu44kIW5DOHkL8h3Ritba0zDkFribOr0JX KE8nAtbHhTVpq7GkZNPabTwwlapPT2QsgK4zaLQn u1GnxmSu44kIW5DOHkL8h3Ritba0zDkFribOr0JX 1 http://qilqana.test/charges   8.2.10 10.50.2 es false true local 1 ADMIN ADMIN 000000000 2026-04-20T00:59:38.000000Z 2026-04-20T00:59:38.000000Z 1 ADMINISTRADOR web 2026-04-20T00:59:38.000000Z 2026-04-20T00:59:38.000000Z App\Models\User 1 1 charges.index  App\Http\Controllers\ChargeController@index web auth null null C:\laragon\www\Qilqana\resources\views\charges\partials\item-actions.blade.php <pre class=sf-dump id=sf-dump-715841818 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\ViewErrorBag</span> {<a class=sf-dump-ref>#1363</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">bags</span>: []
</samp>}
</pre><script>Sfdump("sf-dump-715841818", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-291389903 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1486</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-291389903", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1989561804 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1522</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-1989561804", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1811139482 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1545</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-1811139482", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-194946877 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1454</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:2</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1437</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
    <span class=sf-dump-index>1</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1438</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-194946877", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1143563992 data-indent-pad="  "><span class=sf-dump-num>2</span>
</pre><script>Sfdump("sf-dump-1143563992", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1288264608 data-indent-pad="  "><span class=sf-dump-num>2</span>
</pre><script>Sfdump("sf-dump-1288264608", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1818316246 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1818316246", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-983502474 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1555</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\User
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">User</span></span> {<a class=sf-dump-ref>#1556</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="5 characters">users</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: []
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: <span class=sf-dump-note>array:2</span> [ &#8230;2]
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:4</span> [ &#8230;4]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">rememberTokenName</span>: "<span class=sf-dump-str title="14 characters">remember_token</span>"
      #<span class=sf-dump-protected title="Protected property">accessToken</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">roleClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">permissionClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardPermissionsIndex</span>: <span class=sf-dump-const title="Uninitialized property">? array</span>
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-983502474", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-837862503 data-indent-pad="  "><span class=sf-dump-note>array:1</span> [<samp data-depth=1 class=sf-dump-expanded>
  <span class=sf-dump-index>0</span> => "<span class=sf-dump-str title="4 characters">2026</span>"
</samp>]
</pre><script>Sfdump("sf-dump-837862503", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1588756814 data-indent-pad="  "><span class=sf-dump-num>5</span>
</pre><script>Sfdump("sf-dump-1588756814", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-551736210 data-indent-pad="  "><span class=sf-dump-const>true</span>
</pre><script>Sfdump("sf-dump-551736210", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-2102094291 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-2102094291", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-766837955 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-766837955", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1690120059 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-1690120059", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-186096483 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-186096483", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-2124358610 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-2124358610", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-888139652 data-indent-pad="  "><span class=sf-dump-num>1</span>
</pre><script>Sfdump("sf-dump-888139652", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-488040981 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1603</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: []
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-488040981", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1261751449 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1261751449", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1265884481 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1265884481", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-257883175 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-257883175", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1921497159 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1921497159", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-822768470 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-822768470", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1540194512 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1540194512", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-44532656 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-44532656", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-512960447 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-512960447", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-194911060 data-indent-pad="  "><span class=sf-dump-const>true</span>
</pre><script>Sfdump("sf-dump-194911060", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-156046683 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Database\Eloquent\Collection</span> {<a class=sf-dump-ref>#1454</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:2</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1437</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
    <span class=sf-dump-index>1</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Charge
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Charge</span></span> {<a class=sf-dump-ref>#1438</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: []
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [ &#8230;5]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [ &#8230;9]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-156046683", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-332301724 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-332301724", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-189624901 data-indent-pad="  ">{<a class=sf-dump-ref>#1605</a><samp data-depth=1 class=sf-dump-expanded>
  +"<span class=sf-dump-public title="Runtime added dynamic property">iteration</span>": <span class=sf-dump-num>1</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">index</span>": <span class=sf-dump-num>0</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">remaining</span>": <span class=sf-dump-num>1</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">count</span>": <span class=sf-dump-num>2</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">first</span>": <span class=sf-dump-const>true</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">last</span>": <span class=sf-dump-const>false</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">odd</span>": <span class=sf-dump-const>true</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">even</span>": <span class=sf-dump-const>false</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">depth</span>": <span class=sf-dump-num>1</span>
  +"<span class=sf-dump-public title="Runtime added dynamic property">parent</span>": <span class=sf-dump-const>null</span>
</samp>}
</pre><script>Sfdump("sf-dump-189624901", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1840623613 data-indent-pad="  "><span class=sf-dump-const>false</span>
</pre><script>Sfdump("sf-dump-1840623613", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1017425411 data-indent-pad="  "><span class=sf-dump-note>App\Models\Charge</span> {<a class=sf-dump-ref>#1437</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
  #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="7 characters">charges</span>"
  #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
  #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
  +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
  #<span class=sf-dump-protected title="Protected property">with</span>: []
  #<span class=sf-dump-protected title="Protected property">withCount</span>: []
  +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
  +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
  +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>id</span>" => <span class=sf-dump-num>2</span>
    "<span class=sf-dump-key>n_charge</span>" => "<span class=sf-dump-str>2</span>"
    "<span class=sf-dump-key>asunto</span>" => "<span class=sf-dump-str title="6 characters">asunto</span>"
    "<span class=sf-dump-key>charge_period</span>" => "<span class=sf-dump-str title="4 characters">2026</span>"
    "<span class=sf-dump-key>document_date</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>tipo_interesado</span>" => "<span class=sf-dump-str title="15 characters">Persona Natural</span>"
    "<span class=sf-dump-key>user_id</span>" => <span class=sf-dump-num>1</span>
    "<span class=sf-dump-key>natural_person_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>legal_entity_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>resolucion_id</span>" => <span class=sf-dump-num>230642</span>
    "<span class=sf-dump-key>created_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
    "<span class=sf-dump-key>updated_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>id</span>" => <span class=sf-dump-num>2</span>
    "<span class=sf-dump-key>n_charge</span>" => "<span class=sf-dump-str>2</span>"
    "<span class=sf-dump-key>asunto</span>" => "<span class=sf-dump-str title="6 characters">asunto</span>"
    "<span class=sf-dump-key>charge_period</span>" => "<span class=sf-dump-str title="4 characters">2026</span>"
    "<span class=sf-dump-key>document_date</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>tipo_interesado</span>" => "<span class=sf-dump-str title="15 characters">Persona Natural</span>"
    "<span class=sf-dump-key>user_id</span>" => <span class=sf-dump-num>1</span>
    "<span class=sf-dump-key>natural_person_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>legal_entity_id</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>resolucion_id</span>" => <span class=sf-dump-num>230642</span>
    "<span class=sf-dump-key>created_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
    "<span class=sf-dump-key>updated_at</span>" => "<span class=sf-dump-str title="19 characters">2026-04-21 03:24:58</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">changes</span>: []
  #<span class=sf-dump-protected title="Protected property">casts</span>: []
  #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
  #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
  #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
  #<span class=sf-dump-protected title="Protected property">appends</span>: []
  #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
  #<span class=sf-dump-protected title="Protected property">observables</span>: []
  #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:5</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>user</span>" => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\User
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">User</span></span> {<a class=sf-dump-ref>#1442</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="5 characters">users</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:8</span> [ &#8230;8]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: []
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: <span class=sf-dump-note>array:2</span> [ &#8230;2]
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:4</span> [ &#8230;4]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">rememberTokenName</span>: "<span class=sf-dump-str title="14 characters">remember_token</span>"
      #<span class=sf-dump-protected title="Protected property">accessToken</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">roleClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">permissionClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardClass</span>: <span class=sf-dump-const>null</span>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Models\User`">wildcardPermissionsIndex</span>: <span class=sf-dump-const title="Uninitialized property">? array</span>
    </samp>}
    "<span class=sf-dump-key>naturalPerson</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>legalEntity</span>" => <span class=sf-dump-const>null</span>
    "<span class=sf-dump-key>signature</span>" => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Signature
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Signature</span></span> {<a class=sf-dump-ref>#1457</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="10 characters">signatures</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:15</span> [ &#8230;15]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:15</span> [ &#8230;15]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: <span class=sf-dump-note>array:2</span> [ &#8230;2]
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
    </samp>}
    "<span class=sf-dump-key>resolucion</span>" => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Resolucion
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Resolucion</span></span> {<a class=sf-dump-ref>#1469</a><samp data-depth=3 class=sf-dump-compact>
      #<span class=sf-dump-protected title="Protected property">connection</span>: "<span class=sf-dump-str title="5 characters">mysql</span>"
      #<span class=sf-dump-protected title="Protected property">table</span>: "<span class=sf-dump-str title="11 characters">resolucions</span>"
      #<span class=sf-dump-protected title="Protected property">primaryKey</span>: "<span class=sf-dump-str title="2 characters">id</span>"
      #<span class=sf-dump-protected title="Protected property">keyType</span>: "<span class=sf-dump-str title="3 characters">int</span>"
      +<span class=sf-dump-public title="Public property">incrementing</span>: <span class=sf-dump-const>true</span>
      #<span class=sf-dump-protected title="Protected property">with</span>: []
      #<span class=sf-dump-protected title="Protected property">withCount</span>: []
      +<span class=sf-dump-public title="Public property">preventsLazyLoading</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>15</span>
      +<span class=sf-dump-public title="Public property">exists</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">wasRecentlyCreated</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">attributes</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">original</span>: <span class=sf-dump-note>array:12</span> [ &#8230;12]
      #<span class=sf-dump-protected title="Protected property">changes</span>: []
      #<span class=sf-dump-protected title="Protected property">casts</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">classCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">attributeCastCache</span>: []
      #<span class=sf-dump-protected title="Protected property">dateFormat</span>: <span class=sf-dump-const>null</span>
      #<span class=sf-dump-protected title="Protected property">appends</span>: []
      #<span class=sf-dump-protected title="Protected property">dispatchesEvents</span>: []
      #<span class=sf-dump-protected title="Protected property">observables</span>: []
      #<span class=sf-dump-protected title="Protected property">relations</span>: []
      #<span class=sf-dump-protected title="Protected property">touches</span>: []
      +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
      +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
      #<span class=sf-dump-protected title="Protected property">hidden</span>: []
      #<span class=sf-dump-protected title="Protected property">visible</span>: []
      #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:7</span> [ &#8230;7]
      #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [ &#8230;1]
      #<span class=sf-dump-protected title="Protected property">dates</span>: <span class=sf-dump-note>array:3</span> [ &#8230;3]
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">touches</span>: []
  +<span class=sf-dump-public title="Public property">timestamps</span>: <span class=sf-dump-const>true</span>
  +<span class=sf-dump-public title="Public property">usesUniqueIds</span>: <span class=sf-dump-const>false</span>
  #<span class=sf-dump-protected title="Protected property">hidden</span>: []
  #<span class=sf-dump-protected title="Protected property">visible</span>: []
  #<span class=sf-dump-protected title="Protected property">fillable</span>: <span class=sf-dump-note>array:9</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => "<span class=sf-dump-str title="8 characters">n_charge</span>"
    <span class=sf-dump-index>1</span> => "<span class=sf-dump-str title="13 characters">charge_period</span>"
    <span class=sf-dump-index>2</span> => "<span class=sf-dump-str title="13 characters">document_date</span>"
    <span class=sf-dump-index>3</span> => "<span class=sf-dump-str title="7 characters">user_id</span>"
    <span class=sf-dump-index>4</span> => "<span class=sf-dump-str title="13 characters">resolucion_id</span>"
    <span class=sf-dump-index>5</span> => "<span class=sf-dump-str title="15 characters">tipo_interesado</span>"
    <span class=sf-dump-index>6</span> => "<span class=sf-dump-str title="17 characters">natural_person_id</span>"
    <span class=sf-dump-index>7</span> => "<span class=sf-dump-str title="15 characters">legal_entity_id</span>"
    <span class=sf-dump-index>8</span> => "<span class=sf-dump-str title="6 characters">asunto</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">guarded</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => "<span class=sf-dump-str>*</span>"
  </samp>]
</samp>}
</pre><script>Sfdump("sf-dump-1017425411", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1471774139 data-indent-pad="  "><span class=sf-dump-const>true</span>
</pre><script>Sfdump("sf-dump-1471774139", {"maxDepth":3,"maxStringLength":160})</script> null null null  web http://qilqana.test/charges ErrorException Attempt to read property "dni" on null C:\laragon\www\Qilqana null 8.2.10 10.50.2 Flare local Illuminate\Foundation\Bootstrap\HandleExceptions handleError    {"url":"http://qilqana.test/charges","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0","timestamp":"2026-04-25T13:35:11.425Z"} 
[2026-04-25 14:31:37] local.DEBUG: Laravel Client PHP 10.50.2 8.2.10 ParseError 1777127495 syntax error, unexpected token "endforeach", expecting end of file    C:\laragon\www\Qilqana\resources\views\resolucions\index.blade.php 440 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem </div> </div> @empty <div class="text-center text-muted py-5 bg-white rounded-3 shadow-sm"> <span class="material-symbols-outlined fs-1 d-block mb-2">search_off</span> No se encontraron resoluciones </div> @endforelse </div> @disabled(!$canDeleteResolution)> <span class="material-symbols-outlined">delete</span> </button> @endif </div> </div> @empty <div class="text-center text-muted py-4">No se encontraron resoluciones</div> @endforelse </div> <div class="table-responsive d-none d-md-block"> <table class="table table-bordered table-hover"> <thead class="thead-light table-dark"> <tr> <th scope="col">ID</th> <th scope="col">RD</th> <th scope="col">Fecha</th> <th scope="col">Nombres y Apellidos</th> <th scope="col">DNI</th> <th scope="col">Asunto</th> <th scope="col">Periodo</th>  true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/5b30358550133afb056ff7a9882f2dcd.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Pagination\LengthAwarePaginator) 3191 object (Illuminate\Support\Collection) 2026 1 0 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/5b30358550133afb056ff7a9882f2dcd.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Pagination\LengthAwarePaginator) 3191 object (Illuminate\Support\Collection) 2026 1 0 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/resolucions/index.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Pagination\LengthAwarePaginator) 3191 object (Illuminate\Support\Collection) 2026 1 0 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Response.php 69 setContent Illuminate\Http\Response // from routes that will be automatically transformed to their JSON form. if ($this->shouldBeJson($content)) { $this->header('Content-Type', 'application/json'); null $content = $this->morphToJson($content); null if ($content === false) { throw new InvalidArgumentException(json_last_error_msg()); } } null // If this content implements the "Renderable" interface then we will call the // render method on the object so we will avoid any "__toString" exceptions // that might be thrown and have their errors obscured by PHP's handling. elseif ($content instanceof Renderable) { $content = $content->render(); } null parent::setContent($content); null return $this; } null /** * Determine if the given content should be turned into JSON. * * @param  mixed  $content * @return bool */ protected function shouldBeJson($content) callback null null false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Response.php 35 __construct Illuminate\Http\Response null /** * Create a new HTTP response. * * @param  mixed  $content * @param  int  $status * @param  array  $headers * @return void * * @throws \InvalidArgumentException */ public function __construct($content = '', $status = 200, array $headers = []) { $this->headers = new ResponseHeaderBag($headers); null $this->setContent($content); $this->setStatusCode($status); $this->setProtocolVersion('1.0'); } null /** * Set the content on the response. * * @param  mixed  $content * @return $this * * @throws \InvalidArgumentException */ public function setContent(mixed $content): static { null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 918 toResponse Illuminate\Routing\Router if ($response instanceof PsrResponseInterface) { $response = (new HttpFoundationFactory)->createResponse($response); } elseif ($response instanceof Model && $response->wasRecentlyCreated) { $response = new JsonResponse($response, 201); } elseif ($response instanceof Stringable) { $response = new Response($response->__toString(), 200, ['Content-Type' => 'text/html']); } elseif (! $response instanceof SymfonyResponse && ($response instanceof Arrayable || $response instanceof Jsonable || $response instanceof ArrayObject || $response instanceof JsonSerializable || $response instanceof stdClass || is_array($response))) { $response = new JsonResponse($response); } elseif (! $response instanceof SymfonyResponse) { $response = new Response($response, 200, ['Content-Type' => 'text/html']); } null if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) { $response->setNotModified(); } null return $response->prepare($request); } null /** * Substitute the route bindings onto the route. * * @param  \Illuminate\Routing\Route  $route * @return \Illuminate\Routing\Route null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 885 prepareResponse Illuminate\Routing\Router { return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all(); } null /** * Create a response instance from the given value. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { $this->events->dispatch(new PreparingResponse($request, $response)); null return tap(static::toResponse($request, $response), function ($response) use ($request) { $this->events->dispatch(new ResponsePrepared($request, $response)); }); } null /** * Static version of prepareResponse. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public static function toResponse($request, $response) { if ($response instanceof Responsable) { null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 805 Illuminate\Routing\{closure} Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 144 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline return $this->then(function ($passable) { return $passable; }); } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Auth\Middleware\Authorize.php 57 handle Illuminate\Auth\Middleware\Authorize * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @param  string  $ability * @param  array|null  ...$models * @return mixed * * @throws \Illuminate\Auth\AuthenticationException * @throws \Illuminate\Auth\Access\AuthorizationException */ public function handle($request, Closure $next, $ability, ...$models) { $this->gate->authorize($ability, $this->getGateArguments($request, $models)); null return $next($request); } null /** * Get the arguments parameter for the gate. * * @param  \Illuminate\Http\Request  $request * @param  array|null  $models * @return \Illuminate\Database\Eloquent\Model|array|string */ protected function getGateArguments($request, $models) { if (is_null($models)) { return []; } arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false ability modulo resoluciones string false false false models  array false true false false C:\laragon\www\Qilqana\vendor\laravel\boost\src\Middleware\InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Middleware\SubstituteBindings.php 50 handle Illuminate\Routing\Middleware\SubstituteBindings public function __construct(Registrar $router) { $this->router = $router; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { try { $this->router->substituteBindings($route = $request->route()); null $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Auth\Middleware\Authenticate.php 57 handle Illuminate\Auth\Middleware\Authenticate null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @param  string[]  ...$guards * @return mixed * * @throws \Illuminate\Auth\AuthenticationException */ public function handle($request, Closure $next, ...$guards) { $this->authenticate($request, $guards); null return $next($request); } null /** * Determine if the user is logged in to any of the given guards. * * @param  \Illuminate\Http\Request  $request * @param  array  $guards * @return void * * @throws \Illuminate\Auth\AuthenticationException */ protected function authenticate($request, array $guards) { if (empty($guards)) { arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false guards  array false true false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\VerifyCsrfToken.php 78 handle Illuminate\Foundation\Http\Middleware\VerifyCsrfToken * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Middleware\ShareErrorsFromSession.php 49 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // Putting the errors in the view for every view allows the developer to just // assume that some errors are always available, which is convenient since // they don't have to continually run checks for the presence of errors. null return $next($request); } } null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php 121 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // Again, if the session has been configured we will need to close out the session // so that the attributes may be persisted to some storage medium. We will also // add the session identifier cookie to the application response headers now. $this->saveSession($request); null return $response; } null /** arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php 64 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * Handle the given request within session state. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleRequestWhileBlocking(Request $request, $session, Closure $next) { if (! $request->route() instanceof Route) { return; request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse.php 37 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies * @return void */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Cookie\Middleware\EncryptCookies.php 67 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * Decrypt the cookies on the request. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @return \Symfony\Component\HttpFoundation\Request */ protected function decrypt(Request $request) { foreach ($request->cookies as $key => $cookie) { if ($this->isDisabled($key)) { continue; } arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 119 then Illuminate\Pipeline\Pipeline return $this; } null /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null return $pipeline($this->passable); } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { return $this->then(function ($passable) { return $passable; }); } null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 805 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php:805-807 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 784 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * Run the given route within a Stack "onion" instance. * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 748 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * Dispatch the request to a route and return the response. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request)); } null /** * Find the route matching a given request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Routing\Route */ protected function findRoute($request) { $this->events->dispatch(new Routing($request)); null $this->current = $route = $this->routes->match($request); null request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 737 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * Dispatch the request to a route and return the response. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request)); } null /** request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 200 Illuminate\Foundation\Http\{closure} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * Call the terminate method on any terminable middleware. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Http\Response  $response * @return void */ public function terminate($request, $response) { $this->terminateMiddleware($request, $response); null request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 144 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline return $this->then(function ($passable) { return $passable; }); } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TrimStrings.php 40 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { if (in_array($key, $this->except, true) || ! is_string($value)) { return $value; } request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ValidatePostSize.php 27 handle Illuminate\Foundation\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException; } null return $next($request); } null /** * Determine the server 'post_max_size' as bytes. * * @return int */ protected function getPostMaxSize() { if (is_numeric($postMaxSize = ini_get('post_max_size'))) { return (int) $postMaxSize; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance.php 99 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * Determine if the incoming request has a maintenance mode bypass cookie. * * @param  \Illuminate\Http\Request  $request * @param  array  $data * @return bool */ protected function hasValidBypassCookie($request, array $data) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Middleware\HandleCors.php 49 handle Illuminate\Http\Middleware\HandleCors { $this->container = $container; $this->cors = $cors; } null /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Middleware\TrustProxies.php 39 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * Sets the trusted proxies on the request. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function setTrustedProxyIpAddresses(Request $request) { $trustedIps = $this->proxies() ?: config('trustedproxy.proxies'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 119 then Illuminate\Pipeline\Pipeline return $this; } null /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null return $pipeline($this->passable); } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { return $this->then(function ($passable) { return $passable; }); } null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Facade::clearResolvedInstance('request'); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php:197-201 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\public\index.php 51 [top] null | | Composer provides a convenient, automatically generated class loader for | this application. We just need to utilize it! We'll simply require it | into the script here so we don't need to manually load our classes. | */ null require __DIR__.'/../vendor/autoload.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request using | the application's HTTP kernel. Then, we will send the response back | to this client's browser, allowing them to enjoy our application. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() )->send(); null $kernel->terminate($request, $response); null  true http://qilqana.test/resolucions?periodo=&search=3191 null GET Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0 3191 null 3191 null  qilqana.test keep-alive max-age=0 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 http://qilqana.test/resolucions?search=3191&periodo= gzip, deflate es-419,es;q=0.9,en;q=0.8,ja;q=0.7,th;q=0.6,ko;q=0.5 <CENSORED> 1|LMdigGaD4gInPG7UFT4HNiNSjzg9MiGxyUL8xYezcWkTiJpCTMFS5tsxjGPG|$2y$12$WbJyS7sgPdXNvaihX7CNXe9HlrIjg9GQx9pfIqWmY6LTNrDNKzzEa FBPIZ53aeVtkRp4tt8g5dqDJ6UnI63hzCpp7Hk3c H4IzFNGEvbRvkSIsikeCrnrZ975AbDTm2SHRjQIU FBPIZ53aeVtkRp4tt8g5dqDJ6UnI63hzCpp7Hk3c   http://qilqana.test/resolucions?periodo=&search=3191 3  resolucions.index  App\Http\Controllers\ResolucionController@index web auth can:modulo resoluciones 3 ADMIN ADMIN 000000000 2026-04-25T14:00:29.000000Z 2026-04-25T14:00:29.000000Z  5 ADMINISTRADOR web 2026-04-25T14:00:28.000000Z 2026-04-25T14:00:28.000000Z App\Models\User 3 5 C:\laragon\www\Qilqana\resources\views\resolucions\index.blade.php <pre class=sf-dump id=sf-dump-615359487 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\ViewErrorBag</span> {<a class=sf-dump-ref>#1350</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">bags</span>: []
</samp>}
</pre><script>Sfdump("sf-dump-615359487", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-974033336 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Pagination\LengthAwarePaginator</span> {<a class=sf-dump-ref>#1495</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class="sf-dump-note sf-dump-ellipsization" title="Illuminate\Database\Eloquent\Collection
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">Illuminate\Database\Eloquent</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Collection</span></span> {<a class=sf-dump-ref>#1469</a><samp data-depth=2 class=sf-dump-compact>
    #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=3 class=sf-dump-compact>
      <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Resolucion
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Resolucion</span></span> {<a class=sf-dump-ref>#1466</a> &#8230;31}
    </samp>]
    #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
  </samp>}
  #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>20</span>
  #<span class=sf-dump-protected title="Protected property">currentPage</span>: <span class=sf-dump-num>1</span>
  #<span class=sf-dump-protected title="Protected property">path</span>: "<span class=sf-dump-str title="31 characters">http://qilqana.test/resolucions</span>"
  #<span class=sf-dump-protected title="Protected property">query</span>: []
  #<span class=sf-dump-protected title="Protected property">fragment</span>: <span class=sf-dump-const>null</span>
  #<span class=sf-dump-protected title="Protected property">pageName</span>: "<span class=sf-dump-str title="4 characters">page</span>"
  +<span class=sf-dump-public title="Public property">onEachSide</span>: <span class=sf-dump-num>3</span>
  #<span class=sf-dump-protected title="Protected property">options</span>: <span class=sf-dump-note>array:2</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>path</span>" => "<span class=sf-dump-str title="31 characters">http://qilqana.test/resolucions</span>"
    "<span class=sf-dump-key>pageName</span>" => "<span class=sf-dump-str title="4 characters">page</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">total</span>: <span class=sf-dump-num>1</span>
  #<span class=sf-dump-protected title="Protected property">lastPage</span>: <span class=sf-dump-num>1</span>
</samp>}
</pre><script>Sfdump("sf-dump-974033336", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1868445088 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">3191</span>"
</pre><script>Sfdump("sf-dump-1868445088", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1968217939 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\Collection</span> {<a class=sf-dump-ref>#1502</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => "<span class=sf-dump-str title="4 characters">2026</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-1968217939", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-2089279539 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-2089279539", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-919292007 data-indent-pad="  "><span class=sf-dump-num>1</span>
</pre><script>Sfdump("sf-dump-919292007", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1883208685 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1883208685", {"maxDepth":3,"maxStringLength":160})</script> 8.2.10 10.50.2 es false true local   select * from `sessions` where `id` = ? limit 1 22.8 mysql H4IzFNGEvbRvkSIsikeCrnrZ975AbDTm2SHRjQIU 1777127492.8551 select * from `users` where `id` = ? limit 1 0.89 mysql 3 1777127492.8789 select `permissions`.*, `model_has_permissions`.`model_id` as `pivot_model_id`, `model_has_permissions`.`permission_id` as `pivot_permission_id`, `model_has_permissions`.`model_type` as `pivot_model_type` from `permissions` inner join `model_has_permissions` on `permissions`.`id` = `model_has_permissions`.`permission_id` where `model_has_permissions`.`model_id` in (3) and `model_has_permissions`.`model_type` = ? 1.25 mysql App\Models\User 1777127492.9065 select `roles`.*, `model_has_roles`.`model_id` as `pivot_model_id`, `model_has_roles`.`role_id` as `pivot_role_id`, `model_has_roles`.`model_type` as `pivot_model_type` from `roles` inner join `model_has_roles` on `roles`.`id` = `model_has_roles`.`role_id` where `model_has_roles`.`model_id` in (3) and `model_has_roles`.`model_type` = ? 1.12 mysql App\Models\User 1777127492.9086 select count(*) as aggregate from `resolucions` where (`nombres_apellidos` like ? or `rd` like ? or `asunto` like ? or `procedencia` like ? or `dni` like ?) 0.94 mysql %3191% %3191% %3191% %3191% %3191% 1777127492.9142 select * from `resolucions` where (`nombres_apellidos` like ? or `rd` like ? or `asunto` like ? or `procedencia` like ? or `dni` like ?) order by `fecha` desc, `id` desc limit 20 offset 0 0.65 mysql %3191% %3191% %3191% %3191% %3191% 1777127492.915 select * from `charges` where `charges`.`resolucion_id` in (1) 0.9 mysql  1777127492.923 select * from `signatures` where `signatures`.`charge_id` in (1) 0.67 mysql  1777127492.9242 select * from `users` where `users`.`id` in (3) 1.36 mysql  1777127492.9285 select * from `users` where `users`.`id` in (3) 1.26 mysql  1777127492.9305 select * from `natural_people` where `natural_people`.`id` in (1) 0.84 mysql  1777127492.9319 select `rd` from `resolucions` order by `id` desc limit 1 1.07 mysql  1777127492.9356 select distinct `periodo` from `resolucions` order by `periodo` asc 1.07 mysql  1777127492.9372 select `value` from `settings` where `key` = ? limit 1 0.67 mysql charge_period 1777127492.9383 select count(*) as aggregate from `resolucions` where `periodo` = ? 0.59 mysql 2026 1777127492.9393 select count(*) as aggregate from `charges` where `resolucion_id` is not null and `charge_period` = ? and exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` = ?) 0.78 mysql 2026 pendiente 1777127492.9406 local null null C:\laragon\www\Qilqana null 131b576b-c191-4e21-82be-a231e6198ae9 null null Laravel Client PHP 10.50.2 8.2.10 ParseError 1777127495 syntax error, unexpected token "endforeach", expecting end of file    C:\laragon\www\Qilqana\resources\views\resolucions\index.blade.php 440 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem </div> </div> @empty <div class="text-center text-muted py-5 bg-white rounded-3 shadow-sm"> <span class="material-symbols-outlined fs-1 d-block mb-2">search_off</span> No se encontraron resoluciones </div> @endforelse </div> @disabled(!$canDeleteResolution)> <span class="material-symbols-outlined">delete</span> </button> @endif </div> </div> @empty <div class="text-center text-muted py-4">No se encontraron resoluciones</div> @endforelse </div> <div class="table-responsive d-none d-md-block"> <table class="table table-bordered table-hover"> <thead class="thead-light table-dark"> <tr> <th scope="col">ID</th> <th scope="col">RD</th> <th scope="col">Fecha</th> <th scope="col">Nombres y Apellidos</th> <th scope="col">DNI</th> <th scope="col">Asunto</th> <th scope="col">Periodo</th>  true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/5b30358550133afb056ff7a9882f2dcd.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Pagination\LengthAwarePaginator) 3191 object (Illuminate\Support\Collection) 2026 1 0 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/5b30358550133afb056ff7a9882f2dcd.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Pagination\LengthAwarePaginator) 3191 object (Illuminate\Support\Collection) 2026 1 0 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/resolucions/index.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Pagination\LengthAwarePaginator) 3191 object (Illuminate\Support\Collection) 2026 1 0 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Response.php 69 setContent Illuminate\Http\Response // from routes that will be automatically transformed to their JSON form. if ($this->shouldBeJson($content)) { $this->header('Content-Type', 'application/json'); null $content = $this->morphToJson($content); null if ($content === false) { throw new InvalidArgumentException(json_last_error_msg()); } } null // If this content implements the "Renderable" interface then we will call the // render method on the object so we will avoid any "__toString" exceptions // that might be thrown and have their errors obscured by PHP's handling. elseif ($content instanceof Renderable) { $content = $content->render(); } null parent::setContent($content); null return $this; } null /** * Determine if the given content should be turned into JSON. * * @param  mixed  $content * @return bool */ protected function shouldBeJson($content) callback null null false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Response.php 35 __construct Illuminate\Http\Response null /** * Create a new HTTP response. * * @param  mixed  $content * @param  int  $status * @param  array  $headers * @return void * * @throws \InvalidArgumentException */ public function __construct($content = '', $status = 200, array $headers = []) { $this->headers = new ResponseHeaderBag($headers); null $this->setContent($content); $this->setStatusCode($status); $this->setProtocolVersion('1.0'); } null /** * Set the content on the response. * * @param  mixed  $content * @return $this * * @throws \InvalidArgumentException */ public function setContent(mixed $content): static { null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 918 toResponse Illuminate\Routing\Router if ($response instanceof PsrResponseInterface) { $response = (new HttpFoundationFactory)->createResponse($response); } elseif ($response instanceof Model && $response->wasRecentlyCreated) { $response = new JsonResponse($response, 201); } elseif ($response instanceof Stringable) { $response = new Response($response->__toString(), 200, ['Content-Type' => 'text/html']); } elseif (! $response instanceof SymfonyResponse && ($response instanceof Arrayable || $response instanceof Jsonable || $response instanceof ArrayObject || $response instanceof JsonSerializable || $response instanceof stdClass || is_array($response))) { $response = new JsonResponse($response); } elseif (! $response instanceof SymfonyResponse) { $response = new Response($response, 200, ['Content-Type' => 'text/html']); } null if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) { $response->setNotModified(); } null return $response->prepare($request); } null /** * Substitute the route bindings onto the route. * * @param  \Illuminate\Routing\Route  $route * @return \Illuminate\Routing\Route null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 885 prepareResponse Illuminate\Routing\Router { return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all(); } null /** * Create a response instance from the given value. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { $this->events->dispatch(new PreparingResponse($request, $response)); null return tap(static::toResponse($request, $response), function ($response) use ($request) { $this->events->dispatch(new ResponsePrepared($request, $response)); }); } null /** * Static version of prepareResponse. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public static function toResponse($request, $response) { if ($response instanceof Responsable) { null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 805 Illuminate\Routing\{closure} Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 144 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline return $this->then(function ($passable) { return $passable; }); } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Auth\Middleware\Authorize.php 57 handle Illuminate\Auth\Middleware\Authorize * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @param  string  $ability * @param  array|null  ...$models * @return mixed * * @throws \Illuminate\Auth\AuthenticationException * @throws \Illuminate\Auth\Access\AuthorizationException */ public function handle($request, Closure $next, $ability, ...$models) { $this->gate->authorize($ability, $this->getGateArguments($request, $models)); null return $next($request); } null /** * Get the arguments parameter for the gate. * * @param  \Illuminate\Http\Request  $request * @param  array|null  $models * @return \Illuminate\Database\Eloquent\Model|array|string */ protected function getGateArguments($request, $models) { if (is_null($models)) { return []; } arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false ability modulo resoluciones string false false false models  array false true false false C:\laragon\www\Qilqana\vendor\laravel\boost\src\Middleware\InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Middleware\SubstituteBindings.php 50 handle Illuminate\Routing\Middleware\SubstituteBindings public function __construct(Registrar $router) { $this->router = $router; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { try { $this->router->substituteBindings($route = $request->route()); null $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Auth\Middleware\Authenticate.php 57 handle Illuminate\Auth\Middleware\Authenticate null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @param  string[]  ...$guards * @return mixed * * @throws \Illuminate\Auth\AuthenticationException */ public function handle($request, Closure $next, ...$guards) { $this->authenticate($request, $guards); null return $next($request); } null /** * Determine if the user is logged in to any of the given guards. * * @param  \Illuminate\Http\Request  $request * @param  array  $guards * @return void * * @throws \Illuminate\Auth\AuthenticationException */ protected function authenticate($request, array $guards) { if (empty($guards)) { arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false guards  array false true false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\VerifyCsrfToken.php 78 handle Illuminate\Foundation\Http\Middleware\VerifyCsrfToken * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Middleware\ShareErrorsFromSession.php 49 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // Putting the errors in the view for every view allows the developer to just // assume that some errors are always available, which is convenient since // they don't have to continually run checks for the presence of errors. null return $next($request); } } null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php 121 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // Again, if the session has been configured we will need to close out the session // so that the attributes may be persisted to some storage medium. We will also // add the session identifier cookie to the application response headers now. $this->saveSession($request); null return $response; } null /** arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php 64 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * Handle the given request within session state. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleRequestWhileBlocking(Request $request, $session, Closure $next) { if (! $request->route() instanceof Route) { return; request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse.php 37 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies * @return void */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Cookie\Middleware\EncryptCookies.php 67 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * Decrypt the cookies on the request. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @return \Symfony\Component\HttpFoundation\Request */ protected function decrypt(Request $request) { foreach ($request->cookies as $key => $cookie) { if ($this->isDisabled($key)) { continue; } arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 119 then Illuminate\Pipeline\Pipeline return $this; } null /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null return $pipeline($this->passable); } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { return $this->then(function ($passable) { return $passable; }); } null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 805 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php:805-807 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 784 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * Run the given route within a Stack "onion" instance. * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 748 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * Dispatch the request to a route and return the response. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request)); } null /** * Find the route matching a given request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Routing\Route */ protected function findRoute($request) { $this->events->dispatch(new Routing($request)); null $this->current = $route = $this->routes->match($request); null request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 737 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * Dispatch the request to a route and return the response. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request)); } null /** request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 200 Illuminate\Foundation\Http\{closure} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * Call the terminate method on any terminable middleware. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Http\Response  $response * @return void */ public function terminate($request, $response) { $this->terminateMiddleware($request, $response); null request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 144 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline return $this->then(function ($passable) { return $passable; }); } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TrimStrings.php 40 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { if (in_array($key, $this->except, true) || ! is_string($value)) { return $value; } request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ValidatePostSize.php 27 handle Illuminate\Foundation\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException; } null return $next($request); } null /** * Determine the server 'post_max_size' as bytes. * * @return int */ protected function getPostMaxSize() { if (is_numeric($postMaxSize = ini_get('post_max_size'))) { return (int) $postMaxSize; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance.php 99 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * Determine if the incoming request has a maintenance mode bypass cookie. * * @param  \Illuminate\Http\Request  $request * @param  array  $data * @return bool */ protected function hasValidBypassCookie($request, array $data) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Middleware\HandleCors.php 49 handle Illuminate\Http\Middleware\HandleCors { $this->container = $container; $this->cors = $cors; } null /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Middleware\TrustProxies.php 39 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * Sets the trusted proxies on the request. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function setTrustedProxyIpAddresses(Request $request) { $trustedIps = $this->proxies() ?: config('trustedproxy.proxies'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 119 then Illuminate\Pipeline\Pipeline return $this; } null /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null return $pipeline($this->passable); } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { return $this->then(function ($passable) { return $passable; }); } null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Facade::clearResolvedInstance('request'); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php:197-201 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\public\index.php 51 [top] null | | Composer provides a convenient, automatically generated class loader for | this application. We just need to utilize it! We'll simply require it | into the script here so we don't need to manually load our classes. | */ null require __DIR__.'/../vendor/autoload.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request using | the application's HTTP kernel. Then, we will send the response back | to this client's browser, allowing them to enjoy our application. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() )->send(); null $kernel->terminate($request, $response); null  true http://qilqana.test/resolucions?periodo=&search=3191 null GET Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0 3191 null 3191 null  qilqana.test keep-alive max-age=0 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 http://qilqana.test/resolucions?search=3191&periodo= gzip, deflate es-419,es;q=0.9,en;q=0.8,ja;q=0.7,th;q=0.6,ko;q=0.5 <CENSORED> 1|LMdigGaD4gInPG7UFT4HNiNSjzg9MiGxyUL8xYezcWkTiJpCTMFS5tsxjGPG|$2y$12$WbJyS7sgPdXNvaihX7CNXe9HlrIjg9GQx9pfIqWmY6LTNrDNKzzEa FBPIZ53aeVtkRp4tt8g5dqDJ6UnI63hzCpp7Hk3c H4IzFNGEvbRvkSIsikeCrnrZ975AbDTm2SHRjQIU FBPIZ53aeVtkRp4tt8g5dqDJ6UnI63hzCpp7Hk3c   http://qilqana.test/resolucions?periodo=&search=3191 3  resolucions.index  App\Http\Controllers\ResolucionController@index web auth can:modulo resoluciones 3 ADMIN ADMIN 000000000 2026-04-25T14:00:29.000000Z 2026-04-25T14:00:29.000000Z  5 ADMINISTRADOR web 2026-04-25T14:00:28.000000Z 2026-04-25T14:00:28.000000Z App\Models\User 3 5 C:\laragon\www\Qilqana\resources\views\resolucions\index.blade.php <pre class=sf-dump id=sf-dump-615359487 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\ViewErrorBag</span> {<a class=sf-dump-ref>#1350</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">bags</span>: []
</samp>}
</pre><script>Sfdump("sf-dump-615359487", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-974033336 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Pagination\LengthAwarePaginator</span> {<a class=sf-dump-ref>#1495</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class="sf-dump-note sf-dump-ellipsization" title="Illuminate\Database\Eloquent\Collection
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">Illuminate\Database\Eloquent</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Collection</span></span> {<a class=sf-dump-ref>#1469</a><samp data-depth=2 class=sf-dump-compact>
    #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=3 class=sf-dump-compact>
      <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Resolucion
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Resolucion</span></span> {<a class=sf-dump-ref>#1466</a> &#8230;31}
    </samp>]
    #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
  </samp>}
  #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>20</span>
  #<span class=sf-dump-protected title="Protected property">currentPage</span>: <span class=sf-dump-num>1</span>
  #<span class=sf-dump-protected title="Protected property">path</span>: "<span class=sf-dump-str title="31 characters">http://qilqana.test/resolucions</span>"
  #<span class=sf-dump-protected title="Protected property">query</span>: []
  #<span class=sf-dump-protected title="Protected property">fragment</span>: <span class=sf-dump-const>null</span>
  #<span class=sf-dump-protected title="Protected property">pageName</span>: "<span class=sf-dump-str title="4 characters">page</span>"
  +<span class=sf-dump-public title="Public property">onEachSide</span>: <span class=sf-dump-num>3</span>
  #<span class=sf-dump-protected title="Protected property">options</span>: <span class=sf-dump-note>array:2</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>path</span>" => "<span class=sf-dump-str title="31 characters">http://qilqana.test/resolucions</span>"
    "<span class=sf-dump-key>pageName</span>" => "<span class=sf-dump-str title="4 characters">page</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">total</span>: <span class=sf-dump-num>1</span>
  #<span class=sf-dump-protected title="Protected property">lastPage</span>: <span class=sf-dump-num>1</span>
</samp>}
</pre><script>Sfdump("sf-dump-974033336", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1868445088 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">3191</span>"
</pre><script>Sfdump("sf-dump-1868445088", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1968217939 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\Collection</span> {<a class=sf-dump-ref>#1502</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => "<span class=sf-dump-str title="4 characters">2026</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-1968217939", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-2089279539 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-2089279539", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-919292007 data-indent-pad="  "><span class=sf-dump-num>1</span>
</pre><script>Sfdump("sf-dump-919292007", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1883208685 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1883208685", {"maxDepth":3,"maxStringLength":160})</script> 8.2.10 10.50.2 es false true local   select * from `sessions` where `id` = ? limit 1 22.8 mysql H4IzFNGEvbRvkSIsikeCrnrZ975AbDTm2SHRjQIU 1777127492.8551 select * from `users` where `id` = ? limit 1 0.89 mysql 3 1777127492.8789 select `permissions`.*, `model_has_permissions`.`model_id` as `pivot_model_id`, `model_has_permissions`.`permission_id` as `pivot_permission_id`, `model_has_permissions`.`model_type` as `pivot_model_type` from `permissions` inner join `model_has_permissions` on `permissions`.`id` = `model_has_permissions`.`permission_id` where `model_has_permissions`.`model_id` in (3) and `model_has_permissions`.`model_type` = ? 1.25 mysql App\Models\User 1777127492.9065 select `roles`.*, `model_has_roles`.`model_id` as `pivot_model_id`, `model_has_roles`.`role_id` as `pivot_role_id`, `model_has_roles`.`model_type` as `pivot_model_type` from `roles` inner join `model_has_roles` on `roles`.`id` = `model_has_roles`.`role_id` where `model_has_roles`.`model_id` in (3) and `model_has_roles`.`model_type` = ? 1.12 mysql App\Models\User 1777127492.9086 select count(*) as aggregate from `resolucions` where (`nombres_apellidos` like ? or `rd` like ? or `asunto` like ? or `procedencia` like ? or `dni` like ?) 0.94 mysql %3191% %3191% %3191% %3191% %3191% 1777127492.9142 select * from `resolucions` where (`nombres_apellidos` like ? or `rd` like ? or `asunto` like ? or `procedencia` like ? or `dni` like ?) order by `fecha` desc, `id` desc limit 20 offset 0 0.65 mysql %3191% %3191% %3191% %3191% %3191% 1777127492.915 select * from `charges` where `charges`.`resolucion_id` in (1) 0.9 mysql  1777127492.923 select * from `signatures` where `signatures`.`charge_id` in (1) 0.67 mysql  1777127492.9242 select * from `users` where `users`.`id` in (3) 1.36 mysql  1777127492.9285 select * from `users` where `users`.`id` in (3) 1.26 mysql  1777127492.9305 select * from `natural_people` where `natural_people`.`id` in (1) 0.84 mysql  1777127492.9319 select `rd` from `resolucions` order by `id` desc limit 1 1.07 mysql  1777127492.9356 select distinct `periodo` from `resolucions` order by `periodo` asc 1.07 mysql  1777127492.9372 select `value` from `settings` where `key` = ? limit 1 0.67 mysql charge_period 1777127492.9383 select count(*) as aggregate from `resolucions` where `periodo` = ? 0.59 mysql 2026 1777127492.9393 select count(*) as aggregate from `charges` where `resolucion_id` is not null and `charge_period` = ? and exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` = ?) 0.78 mysql 2026 pendiente 1777127492.9406 local null null C:\laragon\www\Qilqana null 131b576b-c191-4e21-82be-a231e6198ae9 null null phpstorm auto false C:\laragon\www\Qilqana null true false \ Clipboard %path:%line true Sublime subl://open?url=file://%path&line=%line TextMate txmt://open?url=file://%path&line=%line Emacs emacs://open?url=file://%path&line=%line MacVim mvim://open/?url=file://%path&line=%line PhpStorm phpstorm://open?file=%path&line=%line PHPStorm Remote javascript:r = new XMLHttpRequest;r.open("get", "http://localhost:63342/api/file/%path:%line");r.send() Idea idea://open?file=%path&line=%line VS Code vscode://file/%path:%line VS Code Insiders vscode-insiders://file/%path:%line VS Code Remote vscode://vscode-remote/%path:%line VS Code Insiders Remote vscode-insiders://vscode-remote/%path:%line VS Codium vscodium://file/%path:%line Cursor cursor://file/%path:%line Atom atom://core/open/file?filename=%path&line=%line Nova nova://open?path=%path&line=%line NetBeans netbeans://open/?f=%path:%line Zed zed://file/%path:%line Windsurf windsurf://file/%path:%line Xdebug xdebug://%path@%line https://flareapp.io/api/public-reports  /_ignition/update-config C:\laragon\www\Qilqana\resources\views\resolucions\index.blade.php 440 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem </div> </div> @empty <div class="text-center text-muted py-5 bg-white rounded-3 shadow-sm"> <span class="material-symbols-outlined fs-1 d-block mb-2">search_off</span> No se encontraron resoluciones </div> @endforelse </div> @disabled(!$canDeleteResolution)> <span class="material-symbols-outlined">delete</span> </button> @endif </div> </div> @empty <div class="text-center text-muted py-4">No se encontraron resoluciones</div> @endforelse </div> <div class="table-responsive d-none d-md-block"> <table class="table table-bordered table-hover"> <thead class="thead-light table-dark"> <tr> <th scope="col">ID</th> <th scope="col">RD</th> <th scope="col">Fecha</th> <th scope="col">Nombres y Apellidos</th> <th scope="col">DNI</th> <th scope="col">Asunto</th> <th scope="col">Periodo</th>  true resources\views\resolucions\index.blade.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/5b30358550133afb056ff7a9882f2dcd.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Pagination\LengthAwarePaginator) 3191 object (Illuminate\Support\Collection) 2026 1 0 array false false false false vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/5b30358550133afb056ff7a9882f2dcd.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Pagination\LengthAwarePaginator) 3191 object (Illuminate\Support\Collection) 2026 1 0 array false false false false vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/resolucions/index.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Pagination\LengthAwarePaginator) 3191 object (Illuminate\Support\Collection) 2026 1 0 array false false false false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Response.php 69 setContent Illuminate\Http\Response // from routes that will be automatically transformed to their JSON form. if ($this->shouldBeJson($content)) { $this->header('Content-Type', 'application/json'); null $content = $this->morphToJson($content); null if ($content === false) { throw new InvalidArgumentException(json_last_error_msg()); } } null // If this content implements the "Renderable" interface then we will call the // render method on the object so we will avoid any "__toString" exceptions // that might be thrown and have their errors obscured by PHP's handling. elseif ($content instanceof Renderable) { $content = $content->render(); } null parent::setContent($content); null return $this; } null /** * Determine if the given content should be turned into JSON. * * @param  mixed  $content * @return bool */ protected function shouldBeJson($content) callback null null false false false false vendor\laravel\framework\src\Illuminate\Http\Response.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Response.php 35 __construct Illuminate\Http\Response null /** * Create a new HTTP response. * * @param  mixed  $content * @param  int  $status * @param  array  $headers * @return void * * @throws \InvalidArgumentException */ public function __construct($content = '', $status = 200, array $headers = []) { $this->headers = new ResponseHeaderBag($headers); null $this->setContent($content); $this->setStatusCode($status); $this->setProtocolVersion('1.0'); } null /** * Set the content on the response. * * @param  mixed  $content * @return $this * * @throws \InvalidArgumentException */ public function setContent(mixed $content): static { null false vendor\laravel\framework\src\Illuminate\Http\Response.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 918 toResponse Illuminate\Routing\Router if ($response instanceof PsrResponseInterface) { $response = (new HttpFoundationFactory)->createResponse($response); } elseif ($response instanceof Model && $response->wasRecentlyCreated) { $response = new JsonResponse($response, 201); } elseif ($response instanceof Stringable) { $response = new Response($response->__toString(), 200, ['Content-Type' => 'text/html']); } elseif (! $response instanceof SymfonyResponse && ($response instanceof Arrayable || $response instanceof Jsonable || $response instanceof ArrayObject || $response instanceof JsonSerializable || $response instanceof stdClass || is_array($response))) { $response = new JsonResponse($response); } elseif (! $response instanceof SymfonyResponse) { $response = new Response($response, 200, ['Content-Type' => 'text/html']); } null if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) { $response->setNotModified(); } null return $response->prepare($request); } null /** * Substitute the route bindings onto the route. * * @param  \Illuminate\Routing\Route  $route * @return \Illuminate\Routing\Route null false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 885 prepareResponse Illuminate\Routing\Router { return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all(); } null /** * Create a response instance from the given value. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { $this->events->dispatch(new PreparingResponse($request, $response)); null return tap(static::toResponse($request, $response), function ($response) use ($request) { $this->events->dispatch(new ResponsePrepared($request, $response)); }); } null /** * Static version of prepareResponse. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public static function toResponse($request, $response) { if ($response instanceof Responsable) { null false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 805 Illuminate\Routing\{closure} Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 144 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline return $this->then(function ($passable) { return $passable; }); } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Auth\Middleware\Authorize.php 57 handle Illuminate\Auth\Middleware\Authorize * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @param  string  $ability * @param  array|null  ...$models * @return mixed * * @throws \Illuminate\Auth\AuthenticationException * @throws \Illuminate\Auth\Access\AuthorizationException */ public function handle($request, Closure $next, $ability, ...$models) { $this->gate->authorize($ability, $this->getGateArguments($request, $models)); null return $next($request); } null /** * Get the arguments parameter for the gate. * * @param  \Illuminate\Http\Request  $request * @param  array|null  $models * @return \Illuminate\Database\Eloquent\Model|array|string */ protected function getGateArguments($request, $models) { if (is_null($models)) { return []; } arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Auth\Middleware\Authorize.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false ability modulo resoluciones string false false false models  array false true false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\boost\src\Middleware\InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\boost\src\Middleware\InjectBoost.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Middleware\SubstituteBindings.php 50 handle Illuminate\Routing\Middleware\SubstituteBindings public function __construct(Registrar $router) { $this->router = $router; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { try { $this->router->substituteBindings($route = $request->route()); null $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Routing\Middleware\SubstituteBindings.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Auth\Middleware\Authenticate.php 57 handle Illuminate\Auth\Middleware\Authenticate null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @param  string[]  ...$guards * @return mixed * * @throws \Illuminate\Auth\AuthenticationException */ public function handle($request, Closure $next, ...$guards) { $this->authenticate($request, $guards); null return $next($request); } null /** * Determine if the user is logged in to any of the given guards. * * @param  \Illuminate\Http\Request  $request * @param  array  $guards * @return void * * @throws \Illuminate\Auth\AuthenticationException */ protected function authenticate($request, array $guards) { if (empty($guards)) { arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Auth\Middleware\Authenticate.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false guards  array false true false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\VerifyCsrfToken.php 78 handle Illuminate\Foundation\Http\Middleware\VerifyCsrfToken * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\VerifyCsrfToken.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Middleware\ShareErrorsFromSession.php 49 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // Putting the errors in the view for every view allows the developer to just // assume that some errors are always available, which is convenient since // they don't have to continually run checks for the presence of errors. null return $next($request); } } null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\View\Middleware\ShareErrorsFromSession.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php 121 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // Again, if the session has been configured we will need to close out the session // so that the attributes may be persisted to some storage medium. We will also // add the session identifier cookie to the application response headers now. $this->saveSession($request); null return $response; } null /** arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php 64 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * Handle the given request within session state. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleRequestWhileBlocking(Request $request, $session, Closure $next) { if (! $request->route() instanceof Route) { return; request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse.php 37 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies * @return void */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Cookie\Middleware\EncryptCookies.php 67 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * Decrypt the cookies on the request. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @return \Symfony\Component\HttpFoundation\Request */ protected function decrypt(Request $request) { foreach ($request->cookies as $key => $cookie) { if ($this->isDisabled($key)) { continue; } arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Cookie\Middleware\EncryptCookies.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 119 then Illuminate\Pipeline\Pipeline return $this; } null /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null return $pipeline($this->passable); } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { return $this->then(function ($passable) { return $passable; }); } null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 805 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php:805-807 Closure false false false false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 784 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * Run the given route within a Stack "onion" instance. * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 748 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * Dispatch the request to a route and return the response. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request)); } null /** * Find the route matching a given request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Routing\Route */ protected function findRoute($request) { $this->events->dispatch(new Routing($request)); null $this->current = $route = $this->routes->match($request); null request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 737 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * Dispatch the request to a route and return the response. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request)); } null /** request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 200 Illuminate\Foundation\Http\{closure} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * Call the terminate method on any terminable middleware. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Http\Response  $response * @return void */ public function terminate($request, $response) { $this->terminateMiddleware($request, $response); null request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 144 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline return $this->then(function ($passable) { return $passable; }); } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TrimStrings.php 40 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { if (in_array($key, $this->except, true) || ! is_string($value)) { return $value; } request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TrimStrings.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ValidatePostSize.php 27 handle Illuminate\Foundation\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException; } null return $next($request); } null /** * Determine the server 'post_max_size' as bytes. * * @return int */ protected function getPostMaxSize() { if (is_numeric($postMaxSize = ini_get('post_max_size'))) { return (int) $postMaxSize; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ValidatePostSize.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance.php 99 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * Determine if the incoming request has a maintenance mode bypass cookie. * * @param  \Illuminate\Http\Request  $request * @param  array  $data * @return bool */ protected function hasValidBypassCookie($request, array $data) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Middleware\HandleCors.php 49 handle Illuminate\Http\Middleware\HandleCors { $this->container = $container; $this->cors = $cors; } null /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Http\Middleware\HandleCors.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Middleware\TrustProxies.php 39 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * Sets the trusted proxies on the request. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function setTrustedProxyIpAddresses(Request $request) { $trustedIps = $this->proxies() ?: config('trustedproxy.proxies'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Http\Middleware\TrustProxies.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 119 then Illuminate\Pipeline\Pipeline return $this; } null /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null return $pipeline($this->passable); } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { return $this->then(function ($passable) { return $passable; }); } null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Facade::clearResolvedInstance('request'); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php:197-201 Closure false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php C:\laragon\www\Qilqana\public\index.php 51 [top] null | | Composer provides a convenient, automatically generated class loader for | this application. We just need to utilize it! We'll simply require it | into the script here so we don't need to manually load our classes. | */ null require __DIR__.'/../vendor/autoload.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request using | the application's HTTP kernel. Then, we will send the response back | to this client's browser, allowing them to enjoy our application. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() )->send(); null $kernel->terminate($request, $response); null  true public\index.php http://qilqana.test/resolucions?periodo=&search=3191 null GET Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0 3191 null 3191 null  select * from `sessions` where `id` = ? limit 1 22.8 mysql H4IzFNGEvbRvkSIsikeCrnrZ975AbDTm2SHRjQIU 1777127492.8551 select * from `users` where `id` = ? limit 1 0.89 mysql 3 1777127492.8789 select `permissions`.*, `model_has_permissions`.`model_id` as `pivot_model_id`, `model_has_permissions`.`permission_id` as `pivot_permission_id`, `model_has_permissions`.`model_type` as `pivot_model_type` from `permissions` inner join `model_has_permissions` on `permissions`.`id` = `model_has_permissions`.`permission_id` where `model_has_permissions`.`model_id` in (3) and `model_has_permissions`.`model_type` = ? 1.25 mysql App\Models\User 1777127492.9065 select `roles`.*, `model_has_roles`.`model_id` as `pivot_model_id`, `model_has_roles`.`role_id` as `pivot_role_id`, `model_has_roles`.`model_type` as `pivot_model_type` from `roles` inner join `model_has_roles` on `roles`.`id` = `model_has_roles`.`role_id` where `model_has_roles`.`model_id` in (3) and `model_has_roles`.`model_type` = ? 1.12 mysql App\Models\User 1777127492.9086 select count(*) as aggregate from `resolucions` where (`nombres_apellidos` like ? or `rd` like ? or `asunto` like ? or `procedencia` like ? or `dni` like ?) 0.94 mysql %3191% %3191% %3191% %3191% %3191% 1777127492.9142 select * from `resolucions` where (`nombres_apellidos` like ? or `rd` like ? or `asunto` like ? or `procedencia` like ? or `dni` like ?) order by `fecha` desc, `id` desc limit 20 offset 0 0.65 mysql %3191% %3191% %3191% %3191% %3191% 1777127492.915 select * from `charges` where `charges`.`resolucion_id` in (1) 0.9 mysql  1777127492.923 select * from `signatures` where `signatures`.`charge_id` in (1) 0.67 mysql  1777127492.9242 select * from `users` where `users`.`id` in (3) 1.36 mysql  1777127492.9285 select * from `users` where `users`.`id` in (3) 1.26 mysql  1777127492.9305 select * from `natural_people` where `natural_people`.`id` in (1) 0.84 mysql  1777127492.9319 select `rd` from `resolucions` order by `id` desc limit 1 1.07 mysql  1777127492.9356 select distinct `periodo` from `resolucions` order by `periodo` asc 1.07 mysql  1777127492.9372 select `value` from `settings` where `key` = ? limit 1 0.67 mysql charge_period 1777127492.9383 select count(*) as aggregate from `resolucions` where `periodo` = ? 0.59 mysql 2026 1777127492.9393 select count(*) as aggregate from `charges` where `resolucion_id` is not null and `charge_period` = ? and exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` = ?) 0.78 mysql 2026 pendiente 1777127492.9406   null qilqana.test keep-alive max-age=0 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 http://qilqana.test/resolucions?search=3191&periodo= gzip, deflate es-419,es;q=0.9,en;q=0.8,ja;q=0.7,th;q=0.6,ko;q=0.5 <CENSORED> 1|LMdigGaD4gInPG7UFT4HNiNSjzg9MiGxyUL8xYezcWkTiJpCTMFS5tsxjGPG|$2y$12$WbJyS7sgPdXNvaihX7CNXe9HlrIjg9GQx9pfIqWmY6LTNrDNKzzEa FBPIZ53aeVtkRp4tt8g5dqDJ6UnI63hzCpp7Hk3c H4IzFNGEvbRvkSIsikeCrnrZ975AbDTm2SHRjQIU FBPIZ53aeVtkRp4tt8g5dqDJ6UnI63hzCpp7Hk3c   http://qilqana.test/resolucions?periodo=&search=3191 3  8.2.10 10.50.2 es false true local 3 ADMIN ADMIN 000000000 2026-04-25T14:00:29.000000Z 2026-04-25T14:00:29.000000Z  5 ADMINISTRADOR web 2026-04-25T14:00:28.000000Z 2026-04-25T14:00:28.000000Z App\Models\User 3 5 resolucions.index  App\Http\Controllers\ResolucionController@index web auth can:modulo resoluciones null null C:\laragon\www\Qilqana\resources\views\resolucions\index.blade.php <pre class=sf-dump id=sf-dump-615359487 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\ViewErrorBag</span> {<a class=sf-dump-ref>#1350</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">bags</span>: []
</samp>}
</pre><script>Sfdump("sf-dump-615359487", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-974033336 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Pagination\LengthAwarePaginator</span> {<a class=sf-dump-ref>#1495</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class="sf-dump-note sf-dump-ellipsization" title="Illuminate\Database\Eloquent\Collection
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">Illuminate\Database\Eloquent</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Collection</span></span> {<a class=sf-dump-ref>#1469</a><samp data-depth=2 class=sf-dump-compact>
    #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=3 class=sf-dump-compact>
      <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Resolucion
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Resolucion</span></span> {<a class=sf-dump-ref>#1466</a> &#8230;31}
    </samp>]
    #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
  </samp>}
  #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>20</span>
  #<span class=sf-dump-protected title="Protected property">currentPage</span>: <span class=sf-dump-num>1</span>
  #<span class=sf-dump-protected title="Protected property">path</span>: "<span class=sf-dump-str title="31 characters">http://qilqana.test/resolucions</span>"
  #<span class=sf-dump-protected title="Protected property">query</span>: []
  #<span class=sf-dump-protected title="Protected property">fragment</span>: <span class=sf-dump-const>null</span>
  #<span class=sf-dump-protected title="Protected property">pageName</span>: "<span class=sf-dump-str title="4 characters">page</span>"
  +<span class=sf-dump-public title="Public property">onEachSide</span>: <span class=sf-dump-num>3</span>
  #<span class=sf-dump-protected title="Protected property">options</span>: <span class=sf-dump-note>array:2</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>path</span>" => "<span class=sf-dump-str title="31 characters">http://qilqana.test/resolucions</span>"
    "<span class=sf-dump-key>pageName</span>" => "<span class=sf-dump-str title="4 characters">page</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">total</span>: <span class=sf-dump-num>1</span>
  #<span class=sf-dump-protected title="Protected property">lastPage</span>: <span class=sf-dump-num>1</span>
</samp>}
</pre><script>Sfdump("sf-dump-974033336", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1868445088 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">3191</span>"
</pre><script>Sfdump("sf-dump-1868445088", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1968217939 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\Collection</span> {<a class=sf-dump-ref>#1502</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => "<span class=sf-dump-str title="4 characters">2026</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-1968217939", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-2089279539 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-2089279539", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-919292007 data-indent-pad="  "><span class=sf-dump-num>1</span>
</pre><script>Sfdump("sf-dump-919292007", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1883208685 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1883208685", {"maxDepth":3,"maxStringLength":160})</script> null null null  web http://qilqana.test/resolucions?periodo=&search=3191 ParseError syntax error, unexpected token "endforeach", expecting end of file C:\laragon\www\Qilqana null 8.2.10 10.50.2 Flare local Illuminate\Filesystem\Filesystem Illuminate\Filesystem\{closure}    {"url":"http://qilqana.test/resolucions?search=3191&periodo=","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0","timestamp":"2026-04-25T14:31:35.669Z"} 
[2026-04-25 14:49:12] local.DEBUG: Laravel Client PHP 10.50.2 8.2.10 ParseError 1777128551 syntax error, unexpected token "endforeach", expecting "elseif" or "else" or "endif"    C:\laragon\www\Qilqana\resources\views\resolucions\index.blade.php 567 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem </div> </td> @endif </tr> @empty <tr> <td colspan="{{ Auth::user()->hasRole('VISUALIZADOR') ? 5 : 6 }}" class="text-center py-5 text-muted"> <span class="material-symbols-outlined fs-1 d-block mb-2">search_off</span> No se encontraron resoluciones </td> </tr> @endforelse </tbody> </table> </div> @empty <tr> @php $colspan = Auth::user()->hasRole('VISUALIZADOR') ? 9 : 10; @endphp <td colspan="{{ $colspan }}" class="text-center">No se encontraron resoluciones</td> </tr> @endforelse </tbody> </table> </div> <!-- Paginacin --> <div id="pagination-container" class="d-flex justify-content-between align-items-center mt-3"> <div class="text-muted">  true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/5b30358550133afb056ff7a9882f2dcd.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Pagination\LengthAwarePaginator) 3191 object (Illuminate\Support\Collection) 2026 1 0 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/5b30358550133afb056ff7a9882f2dcd.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Pagination\LengthAwarePaginator) 3191 object (Illuminate\Support\Collection) 2026 1 0 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/resolucions/index.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Pagination\LengthAwarePaginator) 3191 object (Illuminate\Support\Collection) 2026 1 0 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Response.php 69 setContent Illuminate\Http\Response // from routes that will be automatically transformed to their JSON form. if ($this->shouldBeJson($content)) { $this->header('Content-Type', 'application/json'); null $content = $this->morphToJson($content); null if ($content === false) { throw new InvalidArgumentException(json_last_error_msg()); } } null // If this content implements the "Renderable" interface then we will call the // render method on the object so we will avoid any "__toString" exceptions // that might be thrown and have their errors obscured by PHP's handling. elseif ($content instanceof Renderable) { $content = $content->render(); } null parent::setContent($content); null return $this; } null /** * Determine if the given content should be turned into JSON. * * @param  mixed  $content * @return bool */ protected function shouldBeJson($content) callback null null false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Response.php 35 __construct Illuminate\Http\Response null /** * Create a new HTTP response. * * @param  mixed  $content * @param  int  $status * @param  array  $headers * @return void * * @throws \InvalidArgumentException */ public function __construct($content = '', $status = 200, array $headers = []) { $this->headers = new ResponseHeaderBag($headers); null $this->setContent($content); $this->setStatusCode($status); $this->setProtocolVersion('1.0'); } null /** * Set the content on the response. * * @param  mixed  $content * @return $this * * @throws \InvalidArgumentException */ public function setContent(mixed $content): static { null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 918 toResponse Illuminate\Routing\Router if ($response instanceof PsrResponseInterface) { $response = (new HttpFoundationFactory)->createResponse($response); } elseif ($response instanceof Model && $response->wasRecentlyCreated) { $response = new JsonResponse($response, 201); } elseif ($response instanceof Stringable) { $response = new Response($response->__toString(), 200, ['Content-Type' => 'text/html']); } elseif (! $response instanceof SymfonyResponse && ($response instanceof Arrayable || $response instanceof Jsonable || $response instanceof ArrayObject || $response instanceof JsonSerializable || $response instanceof stdClass || is_array($response))) { $response = new JsonResponse($response); } elseif (! $response instanceof SymfonyResponse) { $response = new Response($response, 200, ['Content-Type' => 'text/html']); } null if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) { $response->setNotModified(); } null return $response->prepare($request); } null /** * Substitute the route bindings onto the route. * * @param  \Illuminate\Routing\Route  $route * @return \Illuminate\Routing\Route null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 885 prepareResponse Illuminate\Routing\Router { return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all(); } null /** * Create a response instance from the given value. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { $this->events->dispatch(new PreparingResponse($request, $response)); null return tap(static::toResponse($request, $response), function ($response) use ($request) { $this->events->dispatch(new ResponsePrepared($request, $response)); }); } null /** * Static version of prepareResponse. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public static function toResponse($request, $response) { if ($response instanceof Responsable) { null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 805 Illuminate\Routing\{closure} Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 144 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline return $this->then(function ($passable) { return $passable; }); } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Auth\Middleware\Authorize.php 57 handle Illuminate\Auth\Middleware\Authorize * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @param  string  $ability * @param  array|null  ...$models * @return mixed * * @throws \Illuminate\Auth\AuthenticationException * @throws \Illuminate\Auth\Access\AuthorizationException */ public function handle($request, Closure $next, $ability, ...$models) { $this->gate->authorize($ability, $this->getGateArguments($request, $models)); null return $next($request); } null /** * Get the arguments parameter for the gate. * * @param  \Illuminate\Http\Request  $request * @param  array|null  $models * @return \Illuminate\Database\Eloquent\Model|array|string */ protected function getGateArguments($request, $models) { if (is_null($models)) { return []; } arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false ability modulo resoluciones string false false false models  array false true false false C:\laragon\www\Qilqana\vendor\laravel\boost\src\Middleware\InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Middleware\SubstituteBindings.php 50 handle Illuminate\Routing\Middleware\SubstituteBindings public function __construct(Registrar $router) { $this->router = $router; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { try { $this->router->substituteBindings($route = $request->route()); null $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Auth\Middleware\Authenticate.php 57 handle Illuminate\Auth\Middleware\Authenticate null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @param  string[]  ...$guards * @return mixed * * @throws \Illuminate\Auth\AuthenticationException */ public function handle($request, Closure $next, ...$guards) { $this->authenticate($request, $guards); null return $next($request); } null /** * Determine if the user is logged in to any of the given guards. * * @param  \Illuminate\Http\Request  $request * @param  array  $guards * @return void * * @throws \Illuminate\Auth\AuthenticationException */ protected function authenticate($request, array $guards) { if (empty($guards)) { arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false guards  array false true false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\VerifyCsrfToken.php 78 handle Illuminate\Foundation\Http\Middleware\VerifyCsrfToken * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Middleware\ShareErrorsFromSession.php 49 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // Putting the errors in the view for every view allows the developer to just // assume that some errors are always available, which is convenient since // they don't have to continually run checks for the presence of errors. null return $next($request); } } null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php 121 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // Again, if the session has been configured we will need to close out the session // so that the attributes may be persisted to some storage medium. We will also // add the session identifier cookie to the application response headers now. $this->saveSession($request); null return $response; } null /** arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php 64 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * Handle the given request within session state. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleRequestWhileBlocking(Request $request, $session, Closure $next) { if (! $request->route() instanceof Route) { return; request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse.php 37 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies * @return void */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Cookie\Middleware\EncryptCookies.php 67 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * Decrypt the cookies on the request. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @return \Symfony\Component\HttpFoundation\Request */ protected function decrypt(Request $request) { foreach ($request->cookies as $key => $cookie) { if ($this->isDisabled($key)) { continue; } arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 119 then Illuminate\Pipeline\Pipeline return $this; } null /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null return $pipeline($this->passable); } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { return $this->then(function ($passable) { return $passable; }); } null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 805 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php:805-807 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 784 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * Run the given route within a Stack "onion" instance. * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 748 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * Dispatch the request to a route and return the response. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request)); } null /** * Find the route matching a given request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Routing\Route */ protected function findRoute($request) { $this->events->dispatch(new Routing($request)); null $this->current = $route = $this->routes->match($request); null request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 737 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * Dispatch the request to a route and return the response. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request)); } null /** request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 200 Illuminate\Foundation\Http\{closure} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * Call the terminate method on any terminable middleware. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Http\Response  $response * @return void */ public function terminate($request, $response) { $this->terminateMiddleware($request, $response); null request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 144 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline return $this->then(function ($passable) { return $passable; }); } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TrimStrings.php 40 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { if (in_array($key, $this->except, true) || ! is_string($value)) { return $value; } request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ValidatePostSize.php 27 handle Illuminate\Foundation\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException; } null return $next($request); } null /** * Determine the server 'post_max_size' as bytes. * * @return int */ protected function getPostMaxSize() { if (is_numeric($postMaxSize = ini_get('post_max_size'))) { return (int) $postMaxSize; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance.php 99 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * Determine if the incoming request has a maintenance mode bypass cookie. * * @param  \Illuminate\Http\Request  $request * @param  array  $data * @return bool */ protected function hasValidBypassCookie($request, array $data) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Middleware\HandleCors.php 49 handle Illuminate\Http\Middleware\HandleCors { $this->container = $container; $this->cors = $cors; } null /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Middleware\TrustProxies.php 39 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * Sets the trusted proxies on the request. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function setTrustedProxyIpAddresses(Request $request) { $trustedIps = $this->proxies() ?: config('trustedproxy.proxies'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 119 then Illuminate\Pipeline\Pipeline return $this; } null /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null return $pipeline($this->passable); } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { return $this->then(function ($passable) { return $passable; }); } null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Facade::clearResolvedInstance('request'); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php:197-201 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\public\index.php 51 [top] null | | Composer provides a convenient, automatically generated class loader for | this application. We just need to utilize it! We'll simply require it | into the script here so we don't need to manually load our classes. | */ null require __DIR__.'/../vendor/autoload.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request using | the application's HTTP kernel. Then, we will send the response back | to this client's browser, allowing them to enjoy our application. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() )->send(); null $kernel->terminate($request, $response); null  true http://qilqana.test/resolucions?periodo=&search=3191 null GET Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0 3191 null 3191 null  qilqana.test keep-alive max-age=0 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 http://qilqana.test/resolucions?search=3191&periodo= gzip, deflate es-419,es;q=0.9,en;q=0.8,ja;q=0.7,th;q=0.6,ko;q=0.5 <CENSORED> 1|LMdigGaD4gInPG7UFT4HNiNSjzg9MiGxyUL8xYezcWkTiJpCTMFS5tsxjGPG|$2y$12$WbJyS7sgPdXNvaihX7CNXe9HlrIjg9GQx9pfIqWmY6LTNrDNKzzEa FBPIZ53aeVtkRp4tt8g5dqDJ6UnI63hzCpp7Hk3c H4IzFNGEvbRvkSIsikeCrnrZ975AbDTm2SHRjQIU FBPIZ53aeVtkRp4tt8g5dqDJ6UnI63hzCpp7Hk3c   http://qilqana.test/resolucions?periodo=&search=3191 3  resolucions.index  App\Http\Controllers\ResolucionController@index web auth can:modulo resoluciones 3 ADMIN ADMIN 000000000 2026-04-25T14:00:29.000000Z 2026-04-25T14:00:29.000000Z  5 ADMINISTRADOR web 2026-04-25T14:00:28.000000Z 2026-04-25T14:00:28.000000Z App\Models\User 3 5 C:\laragon\www\Qilqana\resources\views\resolucions\index.blade.php <pre class=sf-dump id=sf-dump-455781347 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\ViewErrorBag</span> {<a class=sf-dump-ref>#1350</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">bags</span>: []
</samp>}
</pre><script>Sfdump("sf-dump-455781347", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1544757774 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Pagination\LengthAwarePaginator</span> {<a class=sf-dump-ref>#1496</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class="sf-dump-note sf-dump-ellipsization" title="Illuminate\Database\Eloquent\Collection
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">Illuminate\Database\Eloquent</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Collection</span></span> {<a class=sf-dump-ref>#1470</a><samp data-depth=2 class=sf-dump-compact>
    #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=3 class=sf-dump-compact>
      <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Resolucion
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Resolucion</span></span> {<a class=sf-dump-ref>#1467</a> &#8230;31}
    </samp>]
    #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
  </samp>}
  #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>20</span>
  #<span class=sf-dump-protected title="Protected property">currentPage</span>: <span class=sf-dump-num>1</span>
  #<span class=sf-dump-protected title="Protected property">path</span>: "<span class=sf-dump-str title="31 characters">http://qilqana.test/resolucions</span>"
  #<span class=sf-dump-protected title="Protected property">query</span>: []
  #<span class=sf-dump-protected title="Protected property">fragment</span>: <span class=sf-dump-const>null</span>
  #<span class=sf-dump-protected title="Protected property">pageName</span>: "<span class=sf-dump-str title="4 characters">page</span>"
  +<span class=sf-dump-public title="Public property">onEachSide</span>: <span class=sf-dump-num>3</span>
  #<span class=sf-dump-protected title="Protected property">options</span>: <span class=sf-dump-note>array:2</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>path</span>" => "<span class=sf-dump-str title="31 characters">http://qilqana.test/resolucions</span>"
    "<span class=sf-dump-key>pageName</span>" => "<span class=sf-dump-str title="4 characters">page</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">total</span>: <span class=sf-dump-num>1</span>
  #<span class=sf-dump-protected title="Protected property">lastPage</span>: <span class=sf-dump-num>1</span>
</samp>}
</pre><script>Sfdump("sf-dump-1544757774", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1176947781 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">3191</span>"
</pre><script>Sfdump("sf-dump-1176947781", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-840716123 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\Collection</span> {<a class=sf-dump-ref>#1503</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => "<span class=sf-dump-str title="4 characters">2026</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-840716123", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1690773766 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-1690773766", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-134840238 data-indent-pad="  "><span class=sf-dump-num>1</span>
</pre><script>Sfdump("sf-dump-134840238", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1119483407 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1119483407", {"maxDepth":3,"maxStringLength":160})</script> 8.2.10 10.50.2 es false true local   select * from `sessions` where `id` = ? limit 1 6.2 mysql H4IzFNGEvbRvkSIsikeCrnrZ975AbDTm2SHRjQIU 1777128549.9494 delete from `sessions` where `last_activity` <= ? 0.71 mysql 1777121349 1777128549.9505 select * from `users` where `id` = ? limit 1 0.76 mysql 3 1777128549.969 select `permissions`.*, `model_has_permissions`.`model_id` as `pivot_model_id`, `model_has_permissions`.`permission_id` as `pivot_permission_id`, `model_has_permissions`.`model_type` as `pivot_model_type` from `permissions` inner join `model_has_permissions` on `permissions`.`id` = `model_has_permissions`.`permission_id` where `model_has_permissions`.`model_id` in (3) and `model_has_permissions`.`model_type` = ? 1.68 mysql App\Models\User 1777128549.9879 select `roles`.*, `model_has_roles`.`model_id` as `pivot_model_id`, `model_has_roles`.`role_id` as `pivot_role_id`, `model_has_roles`.`model_type` as `pivot_model_type` from `roles` inner join `model_has_roles` on `roles`.`id` = `model_has_roles`.`role_id` where `model_has_roles`.`model_id` in (3) and `model_has_roles`.`model_type` = ? 1.32 mysql App\Models\User 1777128549.9912 select count(*) as aggregate from `resolucions` where (`nombres_apellidos` like ? or `rd` like ? or `asunto` like ? or `procedencia` like ? or `dni` like ?) 0.92 mysql %3191% %3191% %3191% %3191% %3191% 1777128549.9966 select * from `resolucions` where (`nombres_apellidos` like ? or `rd` like ? or `asunto` like ? or `procedencia` like ? or `dni` like ?) order by `fecha` desc, `id` desc limit 20 offset 0 0.62 mysql %3191% %3191% %3191% %3191% %3191% 1777128549.9974 select * from `charges` where `charges`.`resolucion_id` in (1) 1.31 mysql  1777128550.0036 select * from `signatures` where `signatures`.`charge_id` in (1) 0.87 mysql  1777128550.0054 select * from `users` where `users`.`id` in (3) 0.77 mysql  1777128550.0076 select * from `users` where `users`.`id` in (3) 0.66 mysql  1777128550.0086 select * from `natural_people` where `natural_people`.`id` in (1) 0.53 mysql  1777128550.0096 select `rd` from `resolucions` order by `id` desc limit 1 0.51 mysql  1777128550.0116 select distinct `periodo` from `resolucions` order by `periodo` asc 0.7 mysql  1777128550.0125 select `value` from `settings` where `key` = ? limit 1 0.56 mysql charge_period 1777128550.0133 select count(*) as aggregate from `resolucions` where `periodo` = ? 0.64 mysql 2026 1777128550.0143 select count(*) as aggregate from `charges` where `resolucion_id` is not null and `charge_period` = ? and exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` = ?) 1.25 mysql 2026 pendiente 1777128550.0161 local null null C:\laragon\www\Qilqana null 15654493-2da1-4443-aafb-caf5e2d991be null null Laravel Client PHP 10.50.2 8.2.10 ParseError 1777128551 syntax error, unexpected token "endforeach", expecting "elseif" or "else" or "endif"    C:\laragon\www\Qilqana\resources\views\resolucions\index.blade.php 567 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem </div> </td> @endif </tr> @empty <tr> <td colspan="{{ Auth::user()->hasRole('VISUALIZADOR') ? 5 : 6 }}" class="text-center py-5 text-muted"> <span class="material-symbols-outlined fs-1 d-block mb-2">search_off</span> No se encontraron resoluciones </td> </tr> @endforelse </tbody> </table> </div> @empty <tr> @php $colspan = Auth::user()->hasRole('VISUALIZADOR') ? 9 : 10; @endphp <td colspan="{{ $colspan }}" class="text-center">No se encontraron resoluciones</td> </tr> @endforelse </tbody> </table> </div> <!-- Paginacin --> <div id="pagination-container" class="d-flex justify-content-between align-items-center mt-3"> <div class="text-muted">  true C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/5b30358550133afb056ff7a9882f2dcd.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Pagination\LengthAwarePaginator) 3191 object (Illuminate\Support\Collection) 2026 1 0 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/5b30358550133afb056ff7a9882f2dcd.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Pagination\LengthAwarePaginator) 3191 object (Illuminate\Support\Collection) 2026 1 0 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/resolucions/index.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Pagination\LengthAwarePaginator) 3191 object (Illuminate\Support\Collection) 2026 1 0 array false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Response.php 69 setContent Illuminate\Http\Response // from routes that will be automatically transformed to their JSON form. if ($this->shouldBeJson($content)) { $this->header('Content-Type', 'application/json'); null $content = $this->morphToJson($content); null if ($content === false) { throw new InvalidArgumentException(json_last_error_msg()); } } null // If this content implements the "Renderable" interface then we will call the // render method on the object so we will avoid any "__toString" exceptions // that might be thrown and have their errors obscured by PHP's handling. elseif ($content instanceof Renderable) { $content = $content->render(); } null parent::setContent($content); null return $this; } null /** * Determine if the given content should be turned into JSON. * * @param  mixed  $content * @return bool */ protected function shouldBeJson($content) callback null null false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Response.php 35 __construct Illuminate\Http\Response null /** * Create a new HTTP response. * * @param  mixed  $content * @param  int  $status * @param  array  $headers * @return void * * @throws \InvalidArgumentException */ public function __construct($content = '', $status = 200, array $headers = []) { $this->headers = new ResponseHeaderBag($headers); null $this->setContent($content); $this->setStatusCode($status); $this->setProtocolVersion('1.0'); } null /** * Set the content on the response. * * @param  mixed  $content * @return $this * * @throws \InvalidArgumentException */ public function setContent(mixed $content): static { null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 918 toResponse Illuminate\Routing\Router if ($response instanceof PsrResponseInterface) { $response = (new HttpFoundationFactory)->createResponse($response); } elseif ($response instanceof Model && $response->wasRecentlyCreated) { $response = new JsonResponse($response, 201); } elseif ($response instanceof Stringable) { $response = new Response($response->__toString(), 200, ['Content-Type' => 'text/html']); } elseif (! $response instanceof SymfonyResponse && ($response instanceof Arrayable || $response instanceof Jsonable || $response instanceof ArrayObject || $response instanceof JsonSerializable || $response instanceof stdClass || is_array($response))) { $response = new JsonResponse($response); } elseif (! $response instanceof SymfonyResponse) { $response = new Response($response, 200, ['Content-Type' => 'text/html']); } null if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) { $response->setNotModified(); } null return $response->prepare($request); } null /** * Substitute the route bindings onto the route. * * @param  \Illuminate\Routing\Route  $route * @return \Illuminate\Routing\Route null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 885 prepareResponse Illuminate\Routing\Router { return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all(); } null /** * Create a response instance from the given value. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { $this->events->dispatch(new PreparingResponse($request, $response)); null return tap(static::toResponse($request, $response), function ($response) use ($request) { $this->events->dispatch(new ResponsePrepared($request, $response)); }); } null /** * Static version of prepareResponse. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public static function toResponse($request, $response) { if ($response instanceof Responsable) { null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 805 Illuminate\Routing\{closure} Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 144 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline return $this->then(function ($passable) { return $passable; }); } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Auth\Middleware\Authorize.php 57 handle Illuminate\Auth\Middleware\Authorize * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @param  string  $ability * @param  array|null  ...$models * @return mixed * * @throws \Illuminate\Auth\AuthenticationException * @throws \Illuminate\Auth\Access\AuthorizationException */ public function handle($request, Closure $next, $ability, ...$models) { $this->gate->authorize($ability, $this->getGateArguments($request, $models)); null return $next($request); } null /** * Get the arguments parameter for the gate. * * @param  \Illuminate\Http\Request  $request * @param  array|null  $models * @return \Illuminate\Database\Eloquent\Model|array|string */ protected function getGateArguments($request, $models) { if (is_null($models)) { return []; } arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false ability modulo resoluciones string false false false models  array false true false false C:\laragon\www\Qilqana\vendor\laravel\boost\src\Middleware\InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Middleware\SubstituteBindings.php 50 handle Illuminate\Routing\Middleware\SubstituteBindings public function __construct(Registrar $router) { $this->router = $router; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { try { $this->router->substituteBindings($route = $request->route()); null $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Auth\Middleware\Authenticate.php 57 handle Illuminate\Auth\Middleware\Authenticate null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @param  string[]  ...$guards * @return mixed * * @throws \Illuminate\Auth\AuthenticationException */ public function handle($request, Closure $next, ...$guards) { $this->authenticate($request, $guards); null return $next($request); } null /** * Determine if the user is logged in to any of the given guards. * * @param  \Illuminate\Http\Request  $request * @param  array  $guards * @return void * * @throws \Illuminate\Auth\AuthenticationException */ protected function authenticate($request, array $guards) { if (empty($guards)) { arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false guards  array false true false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\VerifyCsrfToken.php 78 handle Illuminate\Foundation\Http\Middleware\VerifyCsrfToken * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Middleware\ShareErrorsFromSession.php 49 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // Putting the errors in the view for every view allows the developer to just // assume that some errors are always available, which is convenient since // they don't have to continually run checks for the presence of errors. null return $next($request); } } null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php 121 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // Again, if the session has been configured we will need to close out the session // so that the attributes may be persisted to some storage medium. We will also // add the session identifier cookie to the application response headers now. $this->saveSession($request); null return $response; } null /** arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php 64 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * Handle the given request within session state. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleRequestWhileBlocking(Request $request, $session, Closure $next) { if (! $request->route() instanceof Route) { return; request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse.php 37 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies * @return void */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Cookie\Middleware\EncryptCookies.php 67 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * Decrypt the cookies on the request. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @return \Symfony\Component\HttpFoundation\Request */ protected function decrypt(Request $request) { foreach ($request->cookies as $key => $cookie) { if ($this->isDisabled($key)) { continue; } arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 119 then Illuminate\Pipeline\Pipeline return $this; } null /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null return $pipeline($this->passable); } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { return $this->then(function ($passable) { return $passable; }); } null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 805 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php:805-807 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 784 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * Run the given route within a Stack "onion" instance. * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 748 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * Dispatch the request to a route and return the response. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request)); } null /** * Find the route matching a given request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Routing\Route */ protected function findRoute($request) { $this->events->dispatch(new Routing($request)); null $this->current = $route = $this->routes->match($request); null request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 737 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * Dispatch the request to a route and return the response. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request)); } null /** request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 200 Illuminate\Foundation\Http\{closure} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * Call the terminate method on any terminable middleware. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Http\Response  $response * @return void */ public function terminate($request, $response) { $this->terminateMiddleware($request, $response); null request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 144 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline return $this->then(function ($passable) { return $passable; }); } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TrimStrings.php 40 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { if (in_array($key, $this->except, true) || ! is_string($value)) { return $value; } request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ValidatePostSize.php 27 handle Illuminate\Foundation\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException; } null return $next($request); } null /** * Determine the server 'post_max_size' as bytes. * * @return int */ protected function getPostMaxSize() { if (is_numeric($postMaxSize = ini_get('post_max_size'))) { return (int) $postMaxSize; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance.php 99 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * Determine if the incoming request has a maintenance mode bypass cookie. * * @param  \Illuminate\Http\Request  $request * @param  array  $data * @return bool */ protected function hasValidBypassCookie($request, array $data) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Middleware\HandleCors.php 49 handle Illuminate\Http\Middleware\HandleCors { $this->container = $container; $this->cors = $cors; } null /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Middleware\TrustProxies.php 39 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * Sets the trusted proxies on the request. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function setTrustedProxyIpAddresses(Request $request) { $trustedIps = $this->proxies() ?: config('trustedproxy.proxies'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 119 then Illuminate\Pipeline\Pipeline return $this; } null /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null return $pipeline($this->passable); } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { return $this->then(function ($passable) { return $passable; }); } null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Facade::clearResolvedInstance('request'); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php:197-201 Closure false false false false C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false C:\laragon\www\Qilqana\public\index.php 51 [top] null | | Composer provides a convenient, automatically generated class loader for | this application. We just need to utilize it! We'll simply require it | into the script here so we don't need to manually load our classes. | */ null require __DIR__.'/../vendor/autoload.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request using | the application's HTTP kernel. Then, we will send the response back | to this client's browser, allowing them to enjoy our application. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() )->send(); null $kernel->terminate($request, $response); null  true http://qilqana.test/resolucions?periodo=&search=3191 null GET Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0 3191 null 3191 null  qilqana.test keep-alive max-age=0 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 http://qilqana.test/resolucions?search=3191&periodo= gzip, deflate es-419,es;q=0.9,en;q=0.8,ja;q=0.7,th;q=0.6,ko;q=0.5 <CENSORED> 1|LMdigGaD4gInPG7UFT4HNiNSjzg9MiGxyUL8xYezcWkTiJpCTMFS5tsxjGPG|$2y$12$WbJyS7sgPdXNvaihX7CNXe9HlrIjg9GQx9pfIqWmY6LTNrDNKzzEa FBPIZ53aeVtkRp4tt8g5dqDJ6UnI63hzCpp7Hk3c H4IzFNGEvbRvkSIsikeCrnrZ975AbDTm2SHRjQIU FBPIZ53aeVtkRp4tt8g5dqDJ6UnI63hzCpp7Hk3c   http://qilqana.test/resolucions?periodo=&search=3191 3  resolucions.index  App\Http\Controllers\ResolucionController@index web auth can:modulo resoluciones 3 ADMIN ADMIN 000000000 2026-04-25T14:00:29.000000Z 2026-04-25T14:00:29.000000Z  5 ADMINISTRADOR web 2026-04-25T14:00:28.000000Z 2026-04-25T14:00:28.000000Z App\Models\User 3 5 C:\laragon\www\Qilqana\resources\views\resolucions\index.blade.php <pre class=sf-dump id=sf-dump-455781347 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\ViewErrorBag</span> {<a class=sf-dump-ref>#1350</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">bags</span>: []
</samp>}
</pre><script>Sfdump("sf-dump-455781347", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1544757774 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Pagination\LengthAwarePaginator</span> {<a class=sf-dump-ref>#1496</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class="sf-dump-note sf-dump-ellipsization" title="Illuminate\Database\Eloquent\Collection
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">Illuminate\Database\Eloquent</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Collection</span></span> {<a class=sf-dump-ref>#1470</a><samp data-depth=2 class=sf-dump-compact>
    #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=3 class=sf-dump-compact>
      <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Resolucion
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Resolucion</span></span> {<a class=sf-dump-ref>#1467</a> &#8230;31}
    </samp>]
    #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
  </samp>}
  #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>20</span>
  #<span class=sf-dump-protected title="Protected property">currentPage</span>: <span class=sf-dump-num>1</span>
  #<span class=sf-dump-protected title="Protected property">path</span>: "<span class=sf-dump-str title="31 characters">http://qilqana.test/resolucions</span>"
  #<span class=sf-dump-protected title="Protected property">query</span>: []
  #<span class=sf-dump-protected title="Protected property">fragment</span>: <span class=sf-dump-const>null</span>
  #<span class=sf-dump-protected title="Protected property">pageName</span>: "<span class=sf-dump-str title="4 characters">page</span>"
  +<span class=sf-dump-public title="Public property">onEachSide</span>: <span class=sf-dump-num>3</span>
  #<span class=sf-dump-protected title="Protected property">options</span>: <span class=sf-dump-note>array:2</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>path</span>" => "<span class=sf-dump-str title="31 characters">http://qilqana.test/resolucions</span>"
    "<span class=sf-dump-key>pageName</span>" => "<span class=sf-dump-str title="4 characters">page</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">total</span>: <span class=sf-dump-num>1</span>
  #<span class=sf-dump-protected title="Protected property">lastPage</span>: <span class=sf-dump-num>1</span>
</samp>}
</pre><script>Sfdump("sf-dump-1544757774", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1176947781 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">3191</span>"
</pre><script>Sfdump("sf-dump-1176947781", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-840716123 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\Collection</span> {<a class=sf-dump-ref>#1503</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => "<span class=sf-dump-str title="4 characters">2026</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-840716123", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1690773766 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-1690773766", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-134840238 data-indent-pad="  "><span class=sf-dump-num>1</span>
</pre><script>Sfdump("sf-dump-134840238", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1119483407 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1119483407", {"maxDepth":3,"maxStringLength":160})</script> 8.2.10 10.50.2 es false true local   select * from `sessions` where `id` = ? limit 1 6.2 mysql H4IzFNGEvbRvkSIsikeCrnrZ975AbDTm2SHRjQIU 1777128549.9494 delete from `sessions` where `last_activity` <= ? 0.71 mysql 1777121349 1777128549.9505 select * from `users` where `id` = ? limit 1 0.76 mysql 3 1777128549.969 select `permissions`.*, `model_has_permissions`.`model_id` as `pivot_model_id`, `model_has_permissions`.`permission_id` as `pivot_permission_id`, `model_has_permissions`.`model_type` as `pivot_model_type` from `permissions` inner join `model_has_permissions` on `permissions`.`id` = `model_has_permissions`.`permission_id` where `model_has_permissions`.`model_id` in (3) and `model_has_permissions`.`model_type` = ? 1.68 mysql App\Models\User 1777128549.9879 select `roles`.*, `model_has_roles`.`model_id` as `pivot_model_id`, `model_has_roles`.`role_id` as `pivot_role_id`, `model_has_roles`.`model_type` as `pivot_model_type` from `roles` inner join `model_has_roles` on `roles`.`id` = `model_has_roles`.`role_id` where `model_has_roles`.`model_id` in (3) and `model_has_roles`.`model_type` = ? 1.32 mysql App\Models\User 1777128549.9912 select count(*) as aggregate from `resolucions` where (`nombres_apellidos` like ? or `rd` like ? or `asunto` like ? or `procedencia` like ? or `dni` like ?) 0.92 mysql %3191% %3191% %3191% %3191% %3191% 1777128549.9966 select * from `resolucions` where (`nombres_apellidos` like ? or `rd` like ? or `asunto` like ? or `procedencia` like ? or `dni` like ?) order by `fecha` desc, `id` desc limit 20 offset 0 0.62 mysql %3191% %3191% %3191% %3191% %3191% 1777128549.9974 select * from `charges` where `charges`.`resolucion_id` in (1) 1.31 mysql  1777128550.0036 select * from `signatures` where `signatures`.`charge_id` in (1) 0.87 mysql  1777128550.0054 select * from `users` where `users`.`id` in (3) 0.77 mysql  1777128550.0076 select * from `users` where `users`.`id` in (3) 0.66 mysql  1777128550.0086 select * from `natural_people` where `natural_people`.`id` in (1) 0.53 mysql  1777128550.0096 select `rd` from `resolucions` order by `id` desc limit 1 0.51 mysql  1777128550.0116 select distinct `periodo` from `resolucions` order by `periodo` asc 0.7 mysql  1777128550.0125 select `value` from `settings` where `key` = ? limit 1 0.56 mysql charge_period 1777128550.0133 select count(*) as aggregate from `resolucions` where `periodo` = ? 0.64 mysql 2026 1777128550.0143 select count(*) as aggregate from `charges` where `resolucion_id` is not null and `charge_period` = ? and exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` = ?) 1.25 mysql 2026 pendiente 1777128550.0161 local null null C:\laragon\www\Qilqana null 15654493-2da1-4443-aafb-caf5e2d991be null null phpstorm auto false C:\laragon\www\Qilqana null true false \ Clipboard %path:%line true Sublime subl://open?url=file://%path&line=%line TextMate txmt://open?url=file://%path&line=%line Emacs emacs://open?url=file://%path&line=%line MacVim mvim://open/?url=file://%path&line=%line PhpStorm phpstorm://open?file=%path&line=%line PHPStorm Remote javascript:r = new XMLHttpRequest;r.open("get", "http://localhost:63342/api/file/%path:%line");r.send() Idea idea://open?file=%path&line=%line VS Code vscode://file/%path:%line VS Code Insiders vscode-insiders://file/%path:%line VS Code Remote vscode://vscode-remote/%path:%line VS Code Insiders Remote vscode-insiders://vscode-remote/%path:%line VS Codium vscodium://file/%path:%line Cursor cursor://file/%path:%line Atom atom://core/open/file?filename=%path&line=%line Nova nova://open?path=%path&line=%line NetBeans netbeans://open/?f=%path:%line Zed zed://file/%path:%line Windsurf windsurf://file/%path:%line Xdebug xdebug://%path@%line https://flareapp.io/api/public-reports  /_ignition/update-config C:\laragon\www\Qilqana\resources\views\resolucions\index.blade.php 567 Illuminate\Filesystem\{closure} Illuminate\Filesystem\Filesystem </div> </td> @endif </tr> @empty <tr> <td colspan="{{ Auth::user()->hasRole('VISUALIZADOR') ? 5 : 6 }}" class="text-center py-5 text-muted"> <span class="material-symbols-outlined fs-1 d-block mb-2">search_off</span> No se encontraron resoluciones </td> </tr> @endforelse </tbody> </table> </div> @empty <tr> @php $colspan = Auth::user()->hasRole('VISUALIZADOR') ? 9 : 10; @endphp <td colspan="{{ $colspan }}" class="text-center">No se encontraron resoluciones</td> </tr> @endforelse </tbody> </table> </div> <!-- Paginacin --> <div id="pagination-container" class="d-flex justify-content-between align-items-center mt-3"> <div class="text-muted">  true resources\views\resolucions\index.blade.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php 58 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path C:\laragon\www\Qilqana\storage\framework\views/5b30358550133afb056ff7a9882f2dcd.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Pagination\LengthAwarePaginator) 3191 object (Illuminate\Support\Collection) 2026 1 0 array false false false false vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php 72 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path C:\laragon\www\Qilqana\storage\framework\views/5b30358550133afb056ff7a9882f2dcd.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Pagination\LengthAwarePaginator) 3191 object (Illuminate\Support\Collection) 2026 1 0 array false false false false vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 207 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path C:\laragon\www\Qilqana\resources\views/resolucions/index.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Pagination\LengthAwarePaginator) 3191 object (Illuminate\Support\Collection) 2026 1 0 array false false false false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 190 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\View.php 159 render Illuminate\View\View { return collect($this->render(fn () => $this->factory->getFragments()))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false vendor\laravel\framework\src\Illuminate\View\View.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Response.php 69 setContent Illuminate\Http\Response // from routes that will be automatically transformed to their JSON form. if ($this->shouldBeJson($content)) { $this->header('Content-Type', 'application/json'); null $content = $this->morphToJson($content); null if ($content === false) { throw new InvalidArgumentException(json_last_error_msg()); } } null // If this content implements the "Renderable" interface then we will call the // render method on the object so we will avoid any "__toString" exceptions // that might be thrown and have their errors obscured by PHP's handling. elseif ($content instanceof Renderable) { $content = $content->render(); } null parent::setContent($content); null return $this; } null /** * Determine if the given content should be turned into JSON. * * @param  mixed  $content * @return bool */ protected function shouldBeJson($content) callback null null false false false false vendor\laravel\framework\src\Illuminate\Http\Response.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Response.php 35 __construct Illuminate\Http\Response null /** * Create a new HTTP response. * * @param  mixed  $content * @param  int  $status * @param  array  $headers * @return void * * @throws \InvalidArgumentException */ public function __construct($content = '', $status = 200, array $headers = []) { $this->headers = new ResponseHeaderBag($headers); null $this->setContent($content); $this->setStatusCode($status); $this->setProtocolVersion('1.0'); } null /** * Set the content on the response. * * @param  mixed  $content * @return $this * * @throws \InvalidArgumentException */ public function setContent(mixed $content): static { null false vendor\laravel\framework\src\Illuminate\Http\Response.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 918 toResponse Illuminate\Routing\Router if ($response instanceof PsrResponseInterface) { $response = (new HttpFoundationFactory)->createResponse($response); } elseif ($response instanceof Model && $response->wasRecentlyCreated) { $response = new JsonResponse($response, 201); } elseif ($response instanceof Stringable) { $response = new Response($response->__toString(), 200, ['Content-Type' => 'text/html']); } elseif (! $response instanceof SymfonyResponse && ($response instanceof Arrayable || $response instanceof Jsonable || $response instanceof ArrayObject || $response instanceof JsonSerializable || $response instanceof stdClass || is_array($response))) { $response = new JsonResponse($response); } elseif (! $response instanceof SymfonyResponse) { $response = new Response($response, 200, ['Content-Type' => 'text/html']); } null if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) { $response->setNotModified(); } null return $response->prepare($request); } null /** * Substitute the route bindings onto the route. * * @param  \Illuminate\Routing\Route  $route * @return \Illuminate\Routing\Route null false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 885 prepareResponse Illuminate\Routing\Router { return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all(); } null /** * Create a response instance from the given value. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { $this->events->dispatch(new PreparingResponse($request, $response)); null return tap(static::toResponse($request, $response), function ($response) use ($request) { $this->events->dispatch(new ResponsePrepared($request, $response)); }); } null /** * Static version of prepareResponse. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public static function toResponse($request, $response) { if ($response instanceof Responsable) { null false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 805 Illuminate\Routing\{closure} Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 144 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline return $this->then(function ($passable) { return $passable; }); } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Auth\Middleware\Authorize.php 57 handle Illuminate\Auth\Middleware\Authorize * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @param  string  $ability * @param  array|null  ...$models * @return mixed * * @throws \Illuminate\Auth\AuthenticationException * @throws \Illuminate\Auth\Access\AuthorizationException */ public function handle($request, Closure $next, $ability, ...$models) { $this->gate->authorize($ability, $this->getGateArguments($request, $models)); null return $next($request); } null /** * Get the arguments parameter for the gate. * * @param  \Illuminate\Http\Request  $request * @param  array|null  $models * @return \Illuminate\Database\Eloquent\Model|array|string */ protected function getGateArguments($request, $models) { if (is_null($models)) { return []; } arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Auth\Middleware\Authorize.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false ability modulo resoluciones string false false false models  array false true false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\boost\src\Middleware\InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\boost\src\Middleware\InjectBoost.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Middleware\SubstituteBindings.php 50 handle Illuminate\Routing\Middleware\SubstituteBindings public function __construct(Registrar $router) { $this->router = $router; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { try { $this->router->substituteBindings($route = $request->route()); null $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Routing\Middleware\SubstituteBindings.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Auth\Middleware\Authenticate.php 57 handle Illuminate\Auth\Middleware\Authenticate null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @param  string[]  ...$guards * @return mixed * * @throws \Illuminate\Auth\AuthenticationException */ public function handle($request, Closure $next, ...$guards) { $this->authenticate($request, $guards); null return $next($request); } null /** * Determine if the user is logged in to any of the given guards. * * @param  \Illuminate\Http\Request  $request * @param  array  $guards * @return void * * @throws \Illuminate\Auth\AuthenticationException */ protected function authenticate($request, array $guards) { if (empty($guards)) { arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Auth\Middleware\Authenticate.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false guards  array false true false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\VerifyCsrfToken.php 78 handle Illuminate\Foundation\Http\Middleware\VerifyCsrfToken * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\VerifyCsrfToken.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\View\Middleware\ShareErrorsFromSession.php 49 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // Putting the errors in the view for every view allows the developer to just // assume that some errors are always available, which is convenient since // they don't have to continually run checks for the presence of errors. null return $next($request); } } null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\View\Middleware\ShareErrorsFromSession.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php 121 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // Again, if the session has been configured we will need to close out the session // so that the attributes may be persisted to some storage medium. We will also // add the session identifier cookie to the application response headers now. $this->saveSession($request); null return $response; } null /** arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php 64 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * Handle the given request within session state. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleRequestWhileBlocking(Request $request, $session, Closure $next) { if (! $request->route() instanceof Route) { return; request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Session\Middleware\StartSession.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse.php 37 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies * @return void */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Cookie\Middleware\EncryptCookies.php 67 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * Decrypt the cookies on the request. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @return \Symfony\Component\HttpFoundation\Request */ protected function decrypt(Request $request) { foreach ($request->cookies as $key => $cookie) { if ($this->isDisabled($key)) { continue; } arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Cookie\Middleware\EncryptCookies.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 119 then Illuminate\Pipeline\Pipeline return $this; } null /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null return $pipeline($this->passable); } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { return $this->then(function ($passable) { return $passable; }); } null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 805 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php:805-807 Closure false false false false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 784 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * Run the given route within a Stack "onion" instance. * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 748 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * Dispatch the request to a route and return the response. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request)); } null /** * Find the route matching a given request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Routing\Route */ protected function findRoute($request) { $this->events->dispatch(new Routing($request)); null $this->current = $route = $this->routes->match($request); null request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Routing\Router.php 737 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * Dispatch the request to a route and return the response. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request)); } null /** request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Routing\Router.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 200 Illuminate\Foundation\Http\{closure} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * Call the terminate method on any terminable middleware. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Http\Response  $response * @return void */ public function terminate($request, $response) { $this->terminateMiddleware($request, $response); null request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 144 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline return $this->then(function ($passable) { return $passable; }); } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:142-148 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TransformsRequest.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TrimStrings.php 40 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { if (in_array($key, $this->except, true) || ! is_string($value)) { return $value; } request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\TrimStrings.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ValidatePostSize.php 27 handle Illuminate\Foundation\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException; } null return $next($request); } null /** * Determine the server 'post_max_size' as bytes. * * @return int */ protected function getPostMaxSize() { if (is_numeric($postMaxSize = ini_get('post_max_size'))) { return (int) $postMaxSize; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\ValidatePostSize.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance.php 99 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * Determine if the incoming request has a maintenance mode bypass cookie. * * @param  \Illuminate\Http\Request  $request * @param  array  $data * @return bool */ protected function hasValidBypassCookie($request, array $data) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Middleware\HandleCors.php 49 handle Illuminate\Http\Middleware\HandleCors { $this->container = $container; $this->cors = $cors; } null /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Http\Middleware\HandleCors.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Http\Middleware\TrustProxies.php 39 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * Sets the trusted proxies on the request. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function setTrustedProxyIpAddresses(Request $request) { $trustedIps = $this->proxies() ?: config('trustedproxy.proxies'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Http\Middleware\TrustProxies.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 183 Illuminate\Pipeline\{closure} Illuminate\Pipeline\Pipeline null // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); null $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false next C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php:159-190 Closure false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php 119 then Illuminate\Pipeline\Pipeline return $this; } null /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null return $pipeline($this->passable); } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { return $this->then(function ($passable) { return $passable; }); } null arg0 GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Pipeline\Pipeline.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Facade::clearResolvedInstance('request'); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php:197-201 Closure false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php C:\laragon\www\Qilqana\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://qilqana.test/resolucions?periodo=&search=3191 Illuminate\Http\Request false false false false vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php C:\laragon\www\Qilqana\public\index.php 51 [top] null | | Composer provides a convenient, automatically generated class loader for | this application. We just need to utilize it! We'll simply require it | into the script here so we don't need to manually load our classes. | */ null require __DIR__.'/../vendor/autoload.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request using | the application's HTTP kernel. Then, we will send the response back | to this client's browser, allowing them to enjoy our application. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() )->send(); null $kernel->terminate($request, $response); null  true public\index.php http://qilqana.test/resolucions?periodo=&search=3191 null GET Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0 3191 null 3191 null  select * from `sessions` where `id` = ? limit 1 6.2 mysql H4IzFNGEvbRvkSIsikeCrnrZ975AbDTm2SHRjQIU 1777128549.9494 delete from `sessions` where `last_activity` <= ? 0.71 mysql 1777121349 1777128549.9505 select * from `users` where `id` = ? limit 1 0.76 mysql 3 1777128549.969 select `permissions`.*, `model_has_permissions`.`model_id` as `pivot_model_id`, `model_has_permissions`.`permission_id` as `pivot_permission_id`, `model_has_permissions`.`model_type` as `pivot_model_type` from `permissions` inner join `model_has_permissions` on `permissions`.`id` = `model_has_permissions`.`permission_id` where `model_has_permissions`.`model_id` in (3) and `model_has_permissions`.`model_type` = ? 1.68 mysql App\Models\User 1777128549.9879 select `roles`.*, `model_has_roles`.`model_id` as `pivot_model_id`, `model_has_roles`.`role_id` as `pivot_role_id`, `model_has_roles`.`model_type` as `pivot_model_type` from `roles` inner join `model_has_roles` on `roles`.`id` = `model_has_roles`.`role_id` where `model_has_roles`.`model_id` in (3) and `model_has_roles`.`model_type` = ? 1.32 mysql App\Models\User 1777128549.9912 select count(*) as aggregate from `resolucions` where (`nombres_apellidos` like ? or `rd` like ? or `asunto` like ? or `procedencia` like ? or `dni` like ?) 0.92 mysql %3191% %3191% %3191% %3191% %3191% 1777128549.9966 select * from `resolucions` where (`nombres_apellidos` like ? or `rd` like ? or `asunto` like ? or `procedencia` like ? or `dni` like ?) order by `fecha` desc, `id` desc limit 20 offset 0 0.62 mysql %3191% %3191% %3191% %3191% %3191% 1777128549.9974 select * from `charges` where `charges`.`resolucion_id` in (1) 1.31 mysql  1777128550.0036 select * from `signatures` where `signatures`.`charge_id` in (1) 0.87 mysql  1777128550.0054 select * from `users` where `users`.`id` in (3) 0.77 mysql  1777128550.0076 select * from `users` where `users`.`id` in (3) 0.66 mysql  1777128550.0086 select * from `natural_people` where `natural_people`.`id` in (1) 0.53 mysql  1777128550.0096 select `rd` from `resolucions` order by `id` desc limit 1 0.51 mysql  1777128550.0116 select distinct `periodo` from `resolucions` order by `periodo` asc 0.7 mysql  1777128550.0125 select `value` from `settings` where `key` = ? limit 1 0.56 mysql charge_period 1777128550.0133 select count(*) as aggregate from `resolucions` where `periodo` = ? 0.64 mysql 2026 1777128550.0143 select count(*) as aggregate from `charges` where `resolucion_id` is not null and `charge_period` = ? and exists (select * from `signatures` where `charges`.`id` = `signatures`.`charge_id` and `signature_status` = ?) 1.25 mysql 2026 pendiente 1777128550.0161   null qilqana.test keep-alive max-age=0 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 http://qilqana.test/resolucions?search=3191&periodo= gzip, deflate es-419,es;q=0.9,en;q=0.8,ja;q=0.7,th;q=0.6,ko;q=0.5 <CENSORED> 1|LMdigGaD4gInPG7UFT4HNiNSjzg9MiGxyUL8xYezcWkTiJpCTMFS5tsxjGPG|$2y$12$WbJyS7sgPdXNvaihX7CNXe9HlrIjg9GQx9pfIqWmY6LTNrDNKzzEa FBPIZ53aeVtkRp4tt8g5dqDJ6UnI63hzCpp7Hk3c H4IzFNGEvbRvkSIsikeCrnrZ975AbDTm2SHRjQIU FBPIZ53aeVtkRp4tt8g5dqDJ6UnI63hzCpp7Hk3c   http://qilqana.test/resolucions?periodo=&search=3191 3  8.2.10 10.50.2 es false true local 3 ADMIN ADMIN 000000000 2026-04-25T14:00:29.000000Z 2026-04-25T14:00:29.000000Z  5 ADMINISTRADOR web 2026-04-25T14:00:28.000000Z 2026-04-25T14:00:28.000000Z App\Models\User 3 5 resolucions.index  App\Http\Controllers\ResolucionController@index web auth can:modulo resoluciones null null C:\laragon\www\Qilqana\resources\views\resolucions\index.blade.php <pre class=sf-dump id=sf-dump-455781347 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\ViewErrorBag</span> {<a class=sf-dump-ref>#1350</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">bags</span>: []
</samp>}
</pre><script>Sfdump("sf-dump-455781347", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1544757774 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Pagination\LengthAwarePaginator</span> {<a class=sf-dump-ref>#1496</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class="sf-dump-note sf-dump-ellipsization" title="Illuminate\Database\Eloquent\Collection
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">Illuminate\Database\Eloquent</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Collection</span></span> {<a class=sf-dump-ref>#1470</a><samp data-depth=2 class=sf-dump-compact>
    #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=3 class=sf-dump-compact>
      <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Models\Resolucion
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Models</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">Resolucion</span></span> {<a class=sf-dump-ref>#1467</a> &#8230;31}
    </samp>]
    #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
  </samp>}
  #<span class=sf-dump-protected title="Protected property">perPage</span>: <span class=sf-dump-num>20</span>
  #<span class=sf-dump-protected title="Protected property">currentPage</span>: <span class=sf-dump-num>1</span>
  #<span class=sf-dump-protected title="Protected property">path</span>: "<span class=sf-dump-str title="31 characters">http://qilqana.test/resolucions</span>"
  #<span class=sf-dump-protected title="Protected property">query</span>: []
  #<span class=sf-dump-protected title="Protected property">fragment</span>: <span class=sf-dump-const>null</span>
  #<span class=sf-dump-protected title="Protected property">pageName</span>: "<span class=sf-dump-str title="4 characters">page</span>"
  +<span class=sf-dump-public title="Public property">onEachSide</span>: <span class=sf-dump-num>3</span>
  #<span class=sf-dump-protected title="Protected property">options</span>: <span class=sf-dump-note>array:2</span> [<samp data-depth=2 class=sf-dump-compact>
    "<span class=sf-dump-key>path</span>" => "<span class=sf-dump-str title="31 characters">http://qilqana.test/resolucions</span>"
    "<span class=sf-dump-key>pageName</span>" => "<span class=sf-dump-str title="4 characters">page</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">total</span>: <span class=sf-dump-num>1</span>
  #<span class=sf-dump-protected title="Protected property">lastPage</span>: <span class=sf-dump-num>1</span>
</samp>}
</pre><script>Sfdump("sf-dump-1544757774", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1176947781 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">3191</span>"
</pre><script>Sfdump("sf-dump-1176947781", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-840716123 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\Collection</span> {<a class=sf-dump-ref>#1503</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:1</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => "<span class=sf-dump-str title="4 characters">2026</span>"
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-840716123", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1690773766 data-indent-pad="  ">"<span class=sf-dump-str title="4 characters">2026</span>"
</pre><script>Sfdump("sf-dump-1690773766", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-134840238 data-indent-pad="  "><span class=sf-dump-num>1</span>
</pre><script>Sfdump("sf-dump-134840238", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1119483407 data-indent-pad="  "><span class=sf-dump-num>0</span>
</pre><script>Sfdump("sf-dump-1119483407", {"maxDepth":3,"maxStringLength":160})</script> null null null  web http://qilqana.test/resolucions?periodo=&search=3191 ParseError syntax error, unexpected token "endforeach", expecting "elseif" or "else" or "endif" C:\laragon\www\Qilqana null 8.2.10 10.50.2 Flare local Illuminate\Filesystem\Filesystem Illuminate\Filesystem\{closure}    {"url":"http://qilqana.test/resolucions?search=3191&periodo=","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0","timestamp":"2026-04-25T14:49:11.853Z"} 
[2026-04-25 15:08:35] local.DEBUG: [vite] server connection lost. Polling for restart... {"url":"http://qilqana.test/charges","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0","timestamp":"2026-04-25T15:08:34.968Z"} 
[2026-04-25 15:46:38] local.DEBUG: [vite] server connection lost. Polling for restart... {"url":"http://qilqana.test/charges","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0","timestamp":"2026-04-25T15:46:38.017Z"} 
[2026-04-27 20:59:23] local.ERROR: [vite] failed to connect to websocket.
your current setup:
  (browser) [::1]:5173/ <--[HTTP]--> localhost:5173/ (server)
  (browser) [::1]:5173/ <--[WebSocket (failing)]--> localhost:5173/ (server)
Check out your Vite / network configuration and https://vite.dev/config/server-options.html#server-hmr . {"url":"http://qilqana.test/charges","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 OPR/130.0.0.0","timestamp":"2026-04-27T20:59:20.806Z"} 
[2026-06-04 23:25:05] local.DEBUG: [vite] server connection lost. Polling for restart... {"url":"http://qilqana.test/charges","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 OPR/131.0.0.0","timestamp":"2026-06-04T22:20:24.360Z"} 
[2026-06-05 01:40:38] local.DEBUG: [vite] server connection lost. Polling for restart... {"url":"http://qilqana.test/resolucions","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 OPR/131.0.0.0","timestamp":"2026-06-05T01:36:35.437Z"} 
[2026-06-05 02:06:34] local.DEBUG: [vite] server connection lost. Polling for restart... {"url":"http://qilqana.test/users","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 OPR/131.0.0.0","timestamp":"2026-06-05T01:52:02.296Z"} 
[2026-06-05 02:27:22] local.DEBUG: [vite] server connection lost. Polling for restart... {"url":"http://qilqana.test/users","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 OPR/131.0.0.0","timestamp":"2026-06-05T02:22:29.422Z"} 
[2026-06-05 05:37:58] local.DEBUG: [vite] server connection lost. Polling for restart... {"url":"http://qilqana.test/resolucions","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 OPR/131.0.0.0","timestamp":"2026-06-05T05:32:08.389Z"} 
[2026-06-05 16:05:48] local.DEBUG: [vite] server connection lost. Polling for restart... {"url":"http://qilqana.test/users","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 OPR/131.0.0.0","timestamp":"2026-06-05T16:05:48.267Z"} 
[2026-06-05 23:52:37] local.DEBUG: [vite] server connection lost. Polling for restart... {"url":"http://qilqana.test/users","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 OPR/131.0.0.0","timestamp":"2026-06-05T23:45:32.755Z"} 
[2026-06-06 04:33:12] local.DEBUG: [vite] server connection lost. Polling for restart... {"url":"http://qilqana.test/legal-entities","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 OPR/131.0.0.0","timestamp":"2026-06-06T04:28:54.081Z"} 
[2026-06-06 05:34:54] local.DEBUG: [vite] server connection lost. Polling for restart... {"url":"http://qilqana.test/charges","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 OPR/131.0.0.0","timestamp":"2026-06-06T05:25:10.389Z"} 
[2026-06-06 14:25:00] local.DEBUG: [vite] server connection lost. Polling for restart... {"url":"http://qilqana.test/resolucions","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 OPR/131.0.0.0","timestamp":"2026-06-06T14:24:38.337Z"} 
[2026-06-06 16:31:55] local.DEBUG: [vite] server connection lost. Polling for restart... {"url":"http://qilqana.test/resolucions","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 OPR/131.0.0.0","timestamp":"2026-06-06T16:31:55.492Z"} 
[2026-06-06 18:16:59] local.DEBUG: [vite] server connection lost. Polling for restart... {"url":"http://qilqana.test/resolucions","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 OPR/131.0.0.0","timestamp":"2026-06-06T17:42:45.309Z"} 
[2026-06-07 05:49:00] local.DEBUG: [vite] server connection lost. Polling for restart... {"url":"http://qilqana.test/charges","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 OPR/131.0.0.0","timestamp":"2026-06-07T05:31:58.318Z"} 
[2026-06-07 06:01:24] local.DEBUG: [vite] server connection lost. Polling for restart... {"url":"http://qilqana.test/charges","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 OPR/131.0.0.0","timestamp":"2026-06-07T06:01:24.186Z"} 
[2026-06-07 18:07:52] local.DEBUG: [vite] server connection lost. Polling for restart... {"url":"http://qilqana.test/resolucions?search=3191&periodo=","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 OPR/131.0.0.0","timestamp":"2026-06-07T18:07:51.527Z"} 
[2026-06-07 18:07:52] local.DEBUG: [vite] server connection lost. Polling for restart... {"url":"http://qilqana.test/charges","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36","timestamp":"2026-06-07T18:07:51.525Z"} 
[2026-06-09 19:25:51] local.DEBUG: [vite] server connection lost. Polling for restart... {"url":"http://qilqana.test/login","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 OPR/131.0.0.0","timestamp":"2026-06-09T16:20:12.663Z"} 
[2026-06-09 19:27:38] local.DEBUG: [vite] server connection lost. Polling for restart... {"url":"http://qilqana.test/login","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 OPR/131.0.0.0","timestamp":"2026-06-09T19:26:00.222Z"} 
[2026-06-09 19:41:13] local.DEBUG: [vite] server connection lost. Polling for restart... {"url":"http://qilqana.test/login","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 OPR/131.0.0.0","timestamp":"2026-06-09T19:37:56.011Z"} 
[2026-06-10 02:03:29] local.DEBUG: [vite] server connection lost. Polling for restart... {"url":"http://qilqana.test/login","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 OPR/131.0.0.0","timestamp":"2026-06-10T00:47:56.365Z"} 
[2026-06-10 12:38:42] local.DEBUG: [vite] server connection lost. Polling for restart... {"url":"http://qilqana.test/login","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 OPR/131.0.0.0","timestamp":"2026-06-10T05:01:39.601Z"} 
[2026-06-10 18:34:24] local.DEBUG: [vite] server connection lost. Polling for restart... {"url":"http://qilqana.test/login","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 OPR/132.0.0.0","timestamp":"2026-06-10T18:02:36.333Z"} 
[2026-06-10 21:17:14] local.DEBUG: [vite] server connection lost. Polling for restart... {"url":"http://qilqana.test/resolucions?search=3191&periodo=","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 OPR/132.0.0.0","timestamp":"2026-06-10T19:58:58.120Z"} 
[2026-06-11 00:31:01] local.ERROR: [Orchestrator] Falló la carga del módulo 'resolucions.index': TypeError Failed to fetch dynamically imported module: http://[::1]:5173/resources/js/resolucions.js?t=1781137859592 TypeError: Failed to fetch dynamically imported module: http://[::1]:5173/resources/js/resolucions.js?t=1781137859592 {"url":"http://qilqana.test/resolucions?search=3191&periodo=","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 OPR/132.0.0.0","timestamp":"2026-06-11T00:31:00.805Z"} 
[2026-06-11 00:31:39] local.ERROR: [Orchestrator] Falló la carga del módulo 'resolucions.index': TypeError Failed to fetch dynamically imported module: http://[::1]:5173/resources/js/resolucions.js?t=1781137859592 TypeError: Failed to fetch dynamically imported module: http://[::1]:5173/resources/js/resolucions.js?t=1781137859592 {"url":"http://qilqana.test/resolucions?search=3191&periodo=","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 OPR/132.0.0.0","timestamp":"2026-06-11T00:31:39.283Z"} 
[2026-06-11 00:32:24] local.ERROR: [Orchestrator] Falló la carga del módulo 'resolucions.index': TypeError Failed to fetch dynamically imported module: http://[::1]:5173/resources/js/resolucions.js?t=1781137859592 TypeError: Failed to fetch dynamically imported module: http://[::1]:5173/resources/js/resolucions.js?t=1781137859592 {"url":"http://qilqana.test/resolucions?search=3191&periodo=","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 OPR/132.0.0.0","timestamp":"2026-06-11T00:32:24.361Z"} 
[2026-06-11 00:32:30] local.ERROR: [Orchestrator] Falló la carga del módulo 'resolucions.index': TypeError Failed to fetch dynamically imported module: http://[::1]:5173/resources/js/resolucions.js?t=1781137859592 TypeError: Failed to fetch dynamically imported module: http://[::1]:5173/resources/js/resolucions.js?t=1781137859592 {"url":"http://qilqana.test/resolucions?search=3191&periodo=","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 OPR/132.0.0.0","timestamp":"2026-06-11T00:32:30.228Z"} 
[2026-06-11 02:42:24] local.DEBUG: [vite] server connection lost. Polling for restart... {"url":"http://qilqana.test/resolucions?search=3191&periodo=","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 OPR/132.0.0.0","timestamp":"2026-06-11T02:33:58.198Z"} 
[2026-06-12 03:18:48] local.DEBUG: [vite] server connection lost. Polling for restart... {"url":"http://qilqana.test/resolucions","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 OPR/132.0.0.0","timestamp":"2026-06-12T03:18:47.307Z"} 
[2026-06-12 03:48:13] local.DEBUG: [vite] server connection lost. Polling for restart... {"url":"http://qilqana.test/resolucions","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 OPR/132.0.0.0","timestamp":"2026-06-12T03:48:13.202Z"} 
[2026-06-12 05:41:19] local.ERROR: Uncaught TypeError: manager.initSelect2AJAX is not a function http://[::1]:5173/resources/js/modules/resolucions/management.js?t=1781239364355 39 25 TypeError manager.initSelect2AJAX is not a function TypeError: manager.initSelect2AJAX is not a function
    at HTMLDivElement.<anonymous> (http://[::1]:5173/resources/js/modules/resolucions/management.js?t=1781239364355:39:25)
    at HTMLDocument.dispatch (https://code.jquery.com/jquery-3.6.0.min.js:2:43064)
    at HTMLDocument.<anonymous> (https://code.jquery.com/jquery-3.6.0.min.js:2:41048)
    at Object.trigger (https://code.jquery.com/jquery-3.6.0.min.js:2:71515)
    at HTMLDivElement.<anonymous> (https://code.jquery.com/jquery-3.6.0.min.js:2:72110)
    at S.each (https://code.jquery.com/jquery-3.6.0.min.js:2:3003)
    at S.each (https://code.jquery.com/jquery-3.6.0.min.js:2:1481)
    at S.trigger (https://code.jquery.com/jquery-3.6.0.min.js:2:72086)
    at Object.trigger (http://[::1]:5173/node_modules/.vite/deps/bootstrap.js?v=e10d4388:1894:18)
    at transitionComplete (http://[::1]:5173/node_modules/.vite/deps/bootstrap.js?v=e10d4388:3553:20) {"url":"http://qilqana.test/resolucions","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 OPR/132.0.0.0","timestamp":"2026-06-12T05:41:18.778Z"} 
[2026-06-12 05:41:19] local.ERROR: Uncaught TypeError: manager.initSelect2AJAX is not a function http://[::1]:5173/resources/js/modules/resolucions/management.js?t=1781239364355 39 25 TypeError manager.initSelect2AJAX is not a function TypeError: manager.initSelect2AJAX is not a function
    at HTMLDivElement.<anonymous> (http://[::1]:5173/resources/js/modules/resolucions/management.js?t=1781239364355:39:25)
    at HTMLDocument.dispatch (https://code.jquery.com/jquery-3.6.0.min.js:2:43064)
    at HTMLDocument.<anonymous> (https://code.jquery.com/jquery-3.6.0.min.js:2:41048)
    at Object.trigger (https://code.jquery.com/jquery-3.6.0.min.js:2:71515)
    at HTMLDivElement.<anonymous> (https://code.jquery.com/jquery-3.6.0.min.js:2:72110)
    at S.each (https://code.jquery.com/jquery-3.6.0.min.js:2:3003)
    at S.each (https://code.jquery.com/jquery-3.6.0.min.js:2:1481)
    at S.trigger (https://code.jquery.com/jquery-3.6.0.min.js:2:72086)
    at Object.trigger (http://[::1]:5173/node_modules/.vite/deps/bootstrap.js?v=e10d4388:1894:18)
    at transitionComplete (http://[::1]:5173/node_modules/.vite/deps/bootstrap.js?v=e10d4388:3553:20) {"url":"http://qilqana.test/resolucions","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 OPR/132.0.0.0","timestamp":"2026-06-12T05:41:18.778Z"} 
[2026-06-12 05:41:37] local.ERROR: Uncaught TypeError: manager.initSelect2AJAX is not a function http://[::1]:5173/resources/js/modules/resolucions/management.js?t=1781239364355 39 25 TypeError manager.initSelect2AJAX is not a function TypeError: manager.initSelect2AJAX is not a function
    at HTMLDivElement.<anonymous> (http://[::1]:5173/resources/js/modules/resolucions/management.js?t=1781239364355:39:25)
    at HTMLDocument.dispatch (https://code.jquery.com/jquery-3.6.0.min.js:2:43064)
    at HTMLDocument.<anonymous> (https://code.jquery.com/jquery-3.6.0.min.js:2:41048)
    at Object.trigger (https://code.jquery.com/jquery-3.6.0.min.js:2:71515)
    at HTMLDivElement.<anonymous> (https://code.jquery.com/jquery-3.6.0.min.js:2:72110)
    at S.each (https://code.jquery.com/jquery-3.6.0.min.js:2:3003)
    at S.each (https://code.jquery.com/jquery-3.6.0.min.js:2:1481)
    at S.trigger (https://code.jquery.com/jquery-3.6.0.min.js:2:72086)
    at Object.trigger (http://[::1]:5173/node_modules/.vite/deps/bootstrap.js?v=e10d4388:1894:18)
    at transitionComplete (http://[::1]:5173/node_modules/.vite/deps/bootstrap.js?v=e10d4388:3553:20) {"url":"http://qilqana.test/resolucions","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 OPR/132.0.0.0","timestamp":"2026-06-12T05:41:36.989Z"} 
[2026-06-12 05:41:37] local.ERROR: Uncaught TypeError: manager.initSelect2AJAX is not a function http://[::1]:5173/resources/js/modules/resolucions/management.js?t=1781239364355 39 25 TypeError manager.initSelect2AJAX is not a function TypeError: manager.initSelect2AJAX is not a function
    at HTMLDivElement.<anonymous> (http://[::1]:5173/resources/js/modules/resolucions/management.js?t=1781239364355:39:25)
    at HTMLDocument.dispatch (https://code.jquery.com/jquery-3.6.0.min.js:2:43064)
    at HTMLDocument.<anonymous> (https://code.jquery.com/jquery-3.6.0.min.js:2:41048)
    at Object.trigger (https://code.jquery.com/jquery-3.6.0.min.js:2:71515)
    at HTMLDivElement.<anonymous> (https://code.jquery.com/jquery-3.6.0.min.js:2:72110)
    at S.each (https://code.jquery.com/jquery-3.6.0.min.js:2:3003)
    at S.each (https://code.jquery.com/jquery-3.6.0.min.js:2:1481)
    at S.trigger (https://code.jquery.com/jquery-3.6.0.min.js:2:72086)
    at Object.trigger (http://[::1]:5173/node_modules/.vite/deps/bootstrap.js?v=e10d4388:1894:18)
    at transitionComplete (http://[::1]:5173/node_modules/.vite/deps/bootstrap.js?v=e10d4388:3553:20) {"url":"http://qilqana.test/resolucions","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 OPR/132.0.0.0","timestamp":"2026-06-12T05:41:36.990Z"} 
[2026-06-12 05:41:46] local.ERROR: Uncaught TypeError: manager.initSelect2AJAX is not a function http://[::1]:5173/resources/js/modules/resolucions/management.js?t=1781239364355 39 25 TypeError manager.initSelect2AJAX is not a function TypeError: manager.initSelect2AJAX is not a function
    at HTMLDivElement.<anonymous> (http://[::1]:5173/resources/js/modules/resolucions/management.js?t=1781239364355:39:25)
    at HTMLDocument.dispatch (https://code.jquery.com/jquery-3.6.0.min.js:2:43064)
    at HTMLDocument.<anonymous> (https://code.jquery.com/jquery-3.6.0.min.js:2:41048)
    at Object.trigger (https://code.jquery.com/jquery-3.6.0.min.js:2:71515)
    at HTMLDivElement.<anonymous> (https://code.jquery.com/jquery-3.6.0.min.js:2:72110)
    at S.each (https://code.jquery.com/jquery-3.6.0.min.js:2:3003)
    at S.each (https://code.jquery.com/jquery-3.6.0.min.js:2:1481)
    at S.trigger (https://code.jquery.com/jquery-3.6.0.min.js:2:72086)
    at Object.trigger (http://[::1]:5173/node_modules/.vite/deps/bootstrap.js?v=e10d4388:1894:18)
    at transitionComplete (http://[::1]:5173/node_modules/.vite/deps/bootstrap.js?v=e10d4388:3553:20) {"url":"http://qilqana.test/resolucions","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 OPR/132.0.0.0","timestamp":"2026-06-12T05:41:45.527Z"} 
[2026-06-12 05:41:46] local.ERROR: Uncaught TypeError: manager.initSelect2AJAX is not a function http://[::1]:5173/resources/js/modules/resolucions/management.js?t=1781239364355 39 25 TypeError manager.initSelect2AJAX is not a function TypeError: manager.initSelect2AJAX is not a function
    at HTMLDivElement.<anonymous> (http://[::1]:5173/resources/js/modules/resolucions/management.js?t=1781239364355:39:25)
    at HTMLDocument.dispatch (https://code.jquery.com/jquery-3.6.0.min.js:2:43064)
    at HTMLDocument.<anonymous> (https://code.jquery.com/jquery-3.6.0.min.js:2:41048)
    at Object.trigger (https://code.jquery.com/jquery-3.6.0.min.js:2:71515)
    at HTMLDivElement.<anonymous> (https://code.jquery.com/jquery-3.6.0.min.js:2:72110)
    at S.each (https://code.jquery.com/jquery-3.6.0.min.js:2:3003)
    at S.each (https://code.jquery.com/jquery-3.6.0.min.js:2:1481)
    at S.trigger (https://code.jquery.com/jquery-3.6.0.min.js:2:72086)
    at Object.trigger (http://[::1]:5173/node_modules/.vite/deps/bootstrap.js?v=e10d4388:1894:18)
    at transitionComplete (http://[::1]:5173/node_modules/.vite/deps/bootstrap.js?v=e10d4388:3553:20) {"url":"http://qilqana.test/resolucions","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 OPR/132.0.0.0","timestamp":"2026-06-12T05:41:45.527Z"} 
[2026-06-12 06:30:12] local.ERROR: [Orchestrator] Falló la carga del módulo 'resolucions.index': TypeError this.setupAsuntoTypesDynamic is not a function TypeError: this.setupAsuntoTypesDynamic is not a function
    at Object.init (http://[::1]:5173/resources/js/modules/resolucions/management.js?t=1781245808008:16:14)
    at Object.init (http://[::1]:5173/resources/js/resolucions.js?t=1781245808008:9:31)
    at http://[::1]:5173/resources/js/app.js:41:36
    at runResilient (http://[::1]:5173/resources/js/modules/common/resilience.js:12:9)
    at orchestrateModules (http://[::1]:5173/resources/js/app.js:38:13) {"url":"http://qilqana.test/resolucions","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 OPR/132.0.0.0","timestamp":"2026-06-12T06:30:11.013Z"} 
[2026-06-12 06:50:36] local.ERROR: [Orchestrator] Falló la carga del módulo 'resolucions.index': TypeError this.setupAsuntoTypesDynamic is not a function TypeError: this.setupAsuntoTypesDynamic is not a function
    at Object.init (http://[::1]:5173/resources/js/modules/resolucions/management.js?t=1781245808008:16:14)
    at Object.init (http://[::1]:5173/resources/js/resolucions.js?t=1781245808008:9:31)
    at http://[::1]:5173/resources/js/app.js:41:36
    at runResilient (http://[::1]:5173/resources/js/modules/common/resilience.js:12:9)
    at orchestrateModules (http://[::1]:5173/resources/js/app.js:38:13) {"url":"http://qilqana.test/resolucions","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 OPR/132.0.0.0","timestamp":"2026-06-12T06:50:35.484Z"} 
[2026-06-12 07:05:51] local.ERROR: [Orchestrator] Falló la carga del módulo 'resolucions.index': TypeError this.setupAsuntoTypesDynamic is not a function TypeError: this.setupAsuntoTypesDynamic is not a function
    at Object.init (http://[::1]:5173/resources/js/modules/resolucions/management.js?t=1781245808008:16:14)
    at Object.init (http://[::1]:5173/resources/js/resolucions.js?t=1781245808008:9:31)
    at http://[::1]:5173/resources/js/app.js:41:36
    at runResilient (http://[::1]:5173/resources/js/modules/common/resilience.js:12:9)
    at orchestrateModules (http://[::1]:5173/resources/js/app.js:38:13) {"url":"http://qilqana.test/resolucions","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 OPR/132.0.0.0","timestamp":"2026-06-12T07:05:51.440Z"} 
[2026-06-12 07:06:00] local.ERROR: [Orchestrator] Falló la carga del módulo 'resolucions.index': TypeError this.setupAsuntoTypesDynamic is not a function TypeError: this.setupAsuntoTypesDynamic is not a function
    at Object.init (http://[::1]:5173/resources/js/modules/resolucions/management.js?t=1781245808008:16:14)
    at Object.init (http://[::1]:5173/resources/js/resolucions.js?t=1781245808008:9:31)
    at http://[::1]:5173/resources/js/app.js:41:36
    at runResilient (http://[::1]:5173/resources/js/modules/common/resilience.js:12:9)
    at orchestrateModules (http://[::1]:5173/resources/js/app.js:38:13) {"url":"http://qilqana.test/resolucions","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 OPR/132.0.0.0","timestamp":"2026-06-12T07:05:59.452Z"} 
[2026-06-12 21:13:11] local.ERROR: Unhandled Promise Rejection TypeError Failed to fetch TypeError: Failed to fetch
    at https://qilqana.ugelsanta.com/public/build/assets/charges-CsjMLugX.js:1:3963 {"url":"https://qilqana.ugelsanta.com/public/charges","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36","timestamp":"2026-06-12T21:13:10.959Z"} 
[2026-06-12 21:33:35] local.ERROR: Error cargando tipos de asunto: TypeError Failed to fetch TypeError: Failed to fetch
    at a (https://qilqana.ugelsanta.com/public/build/assets/resolucions-CkWIk_Cx.js:20:1811)
    at HTMLSelectElement.<anonymous> (https://qilqana.ugelsanta.com/public/build/assets/resolucions-CkWIk_Cx.js:20:2310) {"url":"https://qilqana.ugelsanta.com/public/resolucions","user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36","timestamp":"2026-06-12T21:33:34.584Z"} 
