{{-- If your happiness depends on money, you will never be happy with yourself. --}} @can('trabajador')

Total comisiones

{{ $comisionIndividual->count() }}
Mis comisiones
    @foreach ($comisionIndividual as $cid) {{-- EJEMpLO --}} {{ $total = $total + $cid->comision }} @endforeach
    Trabajos Actividad Importe
    {{ $cid->asignacionagendatrabajosComision->title }} {{ $cid->trabajos->nombre }} @money($cid->comision) @if ($cid->estado == 1) @endif
    Total @money($total)
@endcan @if (auth()->user()->can('supervisor') || auth()->user()->can('administrador'))

Total trabajos

{{ $data->count() }}
Reporte comisiones por trabajador
    @foreach ($data as $ds)
  • {{ $ds->users->name }}
  • @endforeach
Reporte comisiones de Auxiliar Administrativo
    @foreach ($dataPagos as $ds) @if ($ds->monto != null) {{ $totalComi = $totalComi + $totalComisionActividad = ($ds->monto * 2) / 100 }} @endif @endforeach
    Trabajo Fecha Importe
    {{ $ds->actividad->title }} {{ date('d-m-Y', strtotime($ds->actividad->start. ' +1 day')) }} @money($totalComisionActividad = ($ds->monto * 2) / 100)
    Total {{ $totalComi }}
@endif @can('auxiliarAdministrativo')

Total trabajos

{{ $dataPagos->count() }}
Mis comisiones como Auxiliar Administrativo
    @foreach ($dataPagos as $ds) @if ($ds->monto != null) {{ $totalComi = $totalComi + $totalComisionActividad = ($ds->monto * 2) / 100 }} @endif @endforeach
    Trabajo Fecha Importe
    {{ $ds->actividad->title }} {{ date('d-m-Y', strtotime($ds->actividad->start . ' +1 day')) }} @money($totalComisionActividad = ($ds->monto * 2) / 100)
    Total {{ $totalComi }}
@endcan Información comisión
@foreach ($dataEdit as $de) @if ($de->estado == 0) {{-- --}} {{-- --}} @if ($de->estado == 0) @endif {{-- CODIGO VIEJO SI SIRVE--}} {{-- @if ($de->estado == 1) @endif --}} @if ($de->estado == 1) @endif {{ $total = $total + $de->comision }} @endif @endforeach
Trabajos Actividad Importe
{{ $de->asignacionagendatrabajosComision->title }} @foreach(str_split($de->asignacionagendatrabajosComision->title, 25) as $line) {{ $line }}
@endforeach
{{ $de->trabajos->nombre }} @foreach(str_split($de->trabajos->nombre, 25) as $line) {{ $line }}
@endforeach
@money($de->comision) @money($de->comision) @money($de->comision)
Total @money($total)
*Comisión por pagar

CSV

*Comisión pagada
Actualizar comisión
Invalid route action: [App\Http\Livewire\Admin\Comisiones]. (500 Internal Server Error)

Symfony Exception

UnexpectedValueException

HTTP 500 Internal Server Error

Invalid route action: [App\Http\Livewire\Admin\Comisiones].

Exception

UnexpectedValueException

  1.      * @throws \UnexpectedValueException
  2.      */
  3.     protected static function makeInvokable($action)
  4.     {
  5.         if (! method_exists($action'__invoke')) {
  6.             throw new UnexpectedValueException("Invalid route action: [{$action}].");
  7.         }
  8.         return $action.'@__invoke';
  9.     }
  1.         elseif (! isset($action['uses'])) {
  2.             $action['uses'] = static::findCallable($action);
  3.         }
  4.         if (! static::containsSerializedClosure($action) && is_string($action['uses']) && ! str_contains($action['uses'], '@')) {
  5.             $action['uses'] = static::makeInvokable($action['uses']);
  6.         }
  7.         return $action;
  8.     }
  1.      *
  2.      * @throws \UnexpectedValueException
  3.      */
  4.     protected function parseAction($action)
  5.     {
  6.         return RouteAction::parse($this->uri$action);
  7.     }
  8.     /**
  9.      * Run the route action and return the response.
  10.      *
  1.      */
  2.     public function __construct($methods$uri$action)
  3.     {
  4.         $this->uri $uri;
  5.         $this->methods = (array) $methods;
  6.         $this->action Arr::except($this->parseAction($action), ['prefix']);
  7.         if (in_array('GET'$this->methods) && ! in_array('HEAD'$this->methods)) {
  8.             $this->methods[] = 'HEAD';
  9.         }
  1.      * @param  mixed  $action
  2.      * @return \Illuminate\Routing\Route
  3.      */
  4.     public function newRoute($methods$uri$action)
  5.     {
  6.         return (new Route($methods$uri$action))
  7.                     ->setRouter($this)
  8.                     ->setContainer($this->container);
  9.     }
  10.     /**
  1.         if ($this->actionReferencesController($action)) {
  2.             $action $this->convertToControllerAction($action);
  3.         }
  4.         $route $this->newRoute(
  5.             $methods$this->prefix($uri), $action
  6.         );
  7.         // If we have groups that need to be merged, we will merge them now after this
  8.         // route has already been created and is ready to go. After we're done with
  9.         // the merge we will be ready to return the route back out to the caller.
  1.      * @param  array|string|callable|null  $action
  2.      * @return \Illuminate\Routing\Route
  3.      */
  4.     public function addRoute($methods$uri$action)
  5.     {
  6.         return $this->routes->add($this->createRoute($methods$uri$action));
  7.     }
  8.     /**
  9.      * Create a new route instance.
  10.      *
  1.      * @param  array|string|callable|null  $action
  2.      * @return \Illuminate\Routing\Route
  3.      */
  4.     public function get($uri$action null)
  5.     {
  6.         return $this->addRoute(['GET''HEAD'], $uri$action);
  7.     }
  8.     /**
  9.      * Register a new POST route with the router.
  10.      *
  1.         if (! $instance) {
  2.             throw new RuntimeException('A facade root has not been set.');
  3.         }
  4.         return $instance->$method(...$args);
  5.     }
  6. }
  1.     Route::get('/admin-empresas'AdminEmpresas::class)->name('Empresas');
  2.     Route::get('/admin-puestos'AdminPuestos::class)->name('Puestos');
  3.     Route::get('/admin-solicitante-servicio'AdminSolicitanteServicio::class)->name('Solicitante Servicio');
  4.     Route::resource('/admin-roles'UserController::class)->names('Roles');
  5.     Route::get('/admin-usuarios'AdminUsuarios::class)->name('Usuarios');
  6.     Route::get('/admin-comisiones'Comisiones::class)->name('Comisiones');
  7.     Route::get('/admin-comisiones-generales'ComisionesGenerales::class)->name('Comisiones Generales');
  8.     Route::get('/admin-filtrado-solicitante'FiltradoSolicitante::class)->name('Filtrado Solicitante');
  9.     Route::post('/mail', function(Request $request) {
  10.         if ($request->hasFile('csv')) {
  1.      * @return void
  2.      */
  3.     protected function loadRoutes($routes)
  4.     {
  5.         if ($routes instanceof Closure) {
  6.             $routes($this);
  7.         } else {
  8.             (new RouteFileRegistrar($this))->register($routes);
  9.         }
  10.     }
  1.             $this->updateGroupStack($attributes);
  2.             // Once we have updated the group stack, we'll load the provided routes and
  3.             // merge in the group's attributes when the routes are created. After we
  4.             // have created the routes, we will pop the attributes off the stack.
  5.             $this->loadRoutes($groupRoutes);
  6.             array_pop($this->groupStack);
  7.         }
  8.         return $this;
  1.      * @param  \Closure|array|string  $callback
  2.      * @return $this
  3.      */
  4.     public function group($callback)
  5.     {
  6.         $this->router->group($this->attributes$callback);
  7.         return $this;
  8.     }
  9.     /**
  1.     Route::get('/dashboard', function () {
  2.         return view('dashboard');
  3.     })->name('Calendario');
  4.     Route::get('/logout', [App\Http\Controllers\LogouUser::class, 'perform'])->name('logout');
  5. });
  6. // *** CAPTURA TODAS LAS RUTAS NO ENCONTRADAS Y REDIRIGE AL LOGIN ***
  7. Route::fallback(function () {
  8.     return redirect()->route('login');
  9. });
  1.      */
  2.     public function register($routes)
  3.     {
  4.         $router $this->router;
  5.         require $routes;
  6.     }
  7. }
  1.     protected function loadRoutes($routes)
  2.     {
  3.         if ($routes instanceof Closure) {
  4.             $routes($this);
  5.         } else {
  6.             (new RouteFileRegistrar($this))->register($routes);
  7.         }
  8.     }
  9.     /**
  10.      * Get the prefix from the last group on the stack.
  1.             $this->updateGroupStack($attributes);
  2.             // Once we have updated the group stack, we'll load the provided routes and
  3.             // merge in the group's attributes when the routes are created. After we
  4.             // have created the routes, we will pop the attributes off the stack.
  5.             $this->loadRoutes($groupRoutes);
  6.             array_pop($this->groupStack);
  7.         }
  8.         return $this;
  1.      * @param  \Closure|array|string  $callback
  2.      * @return $this
  3.      */
  4.     public function group($callback)
  5.     {
  6.         $this->router->group($this->attributes$callback);
  7.         return $this;
  8.     }
  9.     /**
  1.             Route::middleware('api')
  2.                 ->prefix('api')
  3.                 ->group(base_path('routes/api.php'));
  4.             Route::middleware('web')
  5.                 ->group(base_path('routes/web.php'));
  6.         });
  7.     }
  8.     /**
  9.      * Configure the rate limiters for the application.
  1.         if (static::isCallableWithAtSign($callback) || $defaultMethod) {
  2.             return static::callClass($container$callback$parameters$defaultMethod);
  3.         }
  4.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  5.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  6.         });
  7.     }
  8.     /**
  9.      * Call a string reference to a class using Class@method syntax.
  1.      * @param  mixed  ...$args
  2.      * @return mixed
  3.      */
  4.     public static function unwrapIfClosure($value, ...$args)
  5.     {
  6.         return $value instanceof Closure $value(...$args) : $value;
  7.     }
  8.     /**
  9.      * Get the class name of the given parameter's type, if possible.
  10.      *
  1.      * @return mixed
  2.      */
  3.     protected static function callBoundMethod($container$callback$default)
  4.     {
  5.         if (! is_array($callback)) {
  6.             return Util::unwrapIfClosure($default);
  7.         }
  8.         // Here we need to turn the array callable into a Class@method string we can use to
  9.         // examine the container and see if there are any method bindings for this given
  10.         // method. If there are, we can call this method binding callback immediately.
  1.             return static::callClass($container$callback$parameters$defaultMethod);
  2.         }
  3.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  4.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  5.         });
  6.     }
  7.     /**
  8.      * Call a string reference to a class using Class@method syntax.
  9.      *
  1.             $this->buildStack[] = $className;
  2.             $pushedToBuildStack true;
  3.         }
  4.         $result BoundMethod::call($this$callback$parameters$defaultMethod);
  5.         if ($pushedToBuildStack) {
  6.             array_pop($this->buildStack);
  7.         }
  1.      * @return void
  2.      */
  3.     protected function loadRoutes()
  4.     {
  5.         if (! is_null($this->loadRoutesUsing)) {
  6.             $this->app->call($this->loadRoutesUsing);
  7.         } elseif (method_exists($this'map')) {
  8.             $this->app->call([$this'map']);
  9.         }
  10.     }
  1.             $this->setRootControllerNamespace();
  2.             if ($this->routesAreCached()) {
  3.                 $this->loadCachedRoutes();
  4.             } else {
  5.                 $this->loadRoutes();
  6.                 $this->app->booted(function () {
  7.                     $this->app['router']->getRoutes()->refreshNameLookups();
  8.                     $this->app['router']->getRoutes()->refreshActionLookups();
  9.                 });
  1.         if (static::isCallableWithAtSign($callback) || $defaultMethod) {
  2.             return static::callClass($container$callback$parameters$defaultMethod);
  3.         }
  4.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  5.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  6.         });
  7.     }
  8.     /**
  9.      * Call a string reference to a class using Class@method syntax.
  1.      * @param  mixed  ...$args
  2.      * @return mixed
  3.      */
  4.     public static function unwrapIfClosure($value, ...$args)
  5.     {
  6.         return $value instanceof Closure $value(...$args) : $value;
  7.     }
  8.     /**
  9.      * Get the class name of the given parameter's type, if possible.
  10.      *
  1.      * @return mixed
  2.      */
  3.     protected static function callBoundMethod($container$callback$default)
  4.     {
  5.         if (! is_array($callback)) {
  6.             return Util::unwrapIfClosure($default);
  7.         }
  8.         // Here we need to turn the array callable into a Class@method string we can use to
  9.         // examine the container and see if there are any method bindings for this given
  10.         // method. If there are, we can call this method binding callback immediately.
  1.             return static::callClass($container$callback$parameters$defaultMethod);
  2.         }
  3.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  4.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  5.         });
  6.     }
  7.     /**
  8.      * Call a string reference to a class using Class@method syntax.
  9.      *
  1.             $this->buildStack[] = $className;
  2.             $pushedToBuildStack true;
  3.         }
  4.         $result BoundMethod::call($this$callback$parameters$defaultMethod);
  5.         if ($pushedToBuildStack) {
  6.             array_pop($this->buildStack);
  7.         }
  1.     public function callBootedCallbacks()
  2.     {
  3.         $index 0;
  4.         while ($index count($this->bootedCallbacks)) {
  5.             $this->app->call($this->bootedCallbacks[$index]);
  6.             $index++;
  7.         }
  8.     }
  1.         if (method_exists($provider'boot')) {
  2.             $this->call([$provider'boot']);
  3.         }
  4.         $provider->callBootedCallbacks();
  5.     }
  6.     /**
  7.      * Register a new boot listener.
  8.      *
  1.         // for any listeners that need to do work after this initial booting gets
  2.         // finished. This is useful when ordering the boot-up processes we run.
  3.         $this->fireAppCallbacks($this->bootingCallbacks);
  4.         array_walk($this->serviceProviders, function ($p) {
  5.             $this->bootProvider($p);
  6.         });
  7.         $this->booted true;
  8.         $this->fireAppCallbacks($this->bootedCallbacks);
Application->Illuminate\Foundation\{closure}()
  1.         // finished. This is useful when ordering the boot-up processes we run.
  2.         $this->fireAppCallbacks($this->bootingCallbacks);
  3.         array_walk($this->serviceProviders, function ($p) {
  4.             $this->bootProvider($p);
  5.         });
  6.         $this->booted true;
  7.         $this->fireAppCallbacks($this->bootedCallbacks);
  8.     }
  1.      * @param  \Illuminate\Contracts\Foundation\Application  $app
  2.      * @return void
  3.      */
  4.     public function bootstrap(Application $app)
  5.     {
  6.         $app->boot();
  7.     }
  8. }
  1.         $this->hasBeenBootstrapped true;
  2.         foreach ($bootstrappers as $bootstrapper) {
  3.             $this['events']->dispatch('bootstrapping: '.$bootstrapper, [$this]);
  4.             $this->make($bootstrapper)->bootstrap($this);
  5.             $this['events']->dispatch('bootstrapped: '.$bootstrapper, [$this]);
  6.         }
  7.     }
  1.      * @return void
  2.      */
  3.     public function bootstrap()
  4.     {
  5.         if (! $this->app->hasBeenBootstrapped()) {
  6.             $this->app->bootstrapWith($this->bootstrappers());
  7.         }
  8.     }
  9.     /**
  10.      * Get the route dispatcher callback.
  1.     {
  2.         $this->app->instance('request'$request);
  3.         Facade::clearResolvedInstance('request');
  4.         $this->bootstrap();
  5.         return (new Pipeline($this->app))
  6.                     ->send($request)
  7.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  8.                     ->then($this->dispatchToRouter());
  1.         $this->requestStartedAt Carbon::now();
  2.         try {
  3.             $request->enableHttpMethodParameterOverride();
  4.             $response $this->sendRequestThroughRouter($request);
  5.         } catch (Throwable $e) {
  6.             $this->reportException($e);
  7.             $response $this->renderException($request$e);
  8.         }
  1. $app = require_once __DIR__.'/../bootstrap/app.php';
  2. $kernel $app->make(Kernel::class);
  3. $response $kernel->handle(
  4.     $request Request::capture()
  5. )->send();
  6. $kernel->terminate($request$response);

Stack Trace

UnexpectedValueException
UnexpectedValueException:
Invalid route action: [App\Http\Livewire\Admin\Comisiones].

  at /var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/vendor/laravel/framework/src/Illuminate/Routing/RouteAction.php:92
  at Illuminate\Routing\RouteAction::makeInvokable()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/vendor/laravel/framework/src/Illuminate/Routing/RouteAction.php:47)
  at Illuminate\Routing\RouteAction::parse()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/vendor/laravel/framework/src/Illuminate/Routing/Route.php:191)
  at Illuminate\Routing\Route->parseAction()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/vendor/laravel/framework/src/Illuminate/Routing/Route.php:172)
  at Illuminate\Routing\Route->__construct()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/vendor/laravel/framework/src/Illuminate/Routing/Router.php:661)
  at Illuminate\Routing\Router->newRoute()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/vendor/laravel/framework/src/Illuminate/Routing/Router.php:554)
  at Illuminate\Routing\Router->createRoute()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/vendor/laravel/framework/src/Illuminate/Routing/Router.php:533)
  at Illuminate\Routing\Router->addRoute()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/vendor/laravel/framework/src/Illuminate/Routing/Router.php:150)
  at Illuminate\Routing\Router->get()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php:353)
  at Illuminate\Support\Facades\Facade::__callStatic()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/routes/web.php:73)
  at Illuminate\Routing\RouteFileRegistrar->{closure}()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/vendor/laravel/framework/src/Illuminate/Routing/Router.php:501)
  at Illuminate\Routing\Router->loadRoutes()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/vendor/laravel/framework/src/Illuminate/Routing/Router.php:457)
  at Illuminate\Routing\Router->group()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/vendor/laravel/framework/src/Illuminate/Routing/RouteRegistrar.php:192)
  at Illuminate\Routing\RouteRegistrar->group()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/routes/web.php:92)
  at require('/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/routes/web.php')
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/vendor/laravel/framework/src/Illuminate/Routing/RouteFileRegistrar.php:35)
  at Illuminate\Routing\RouteFileRegistrar->register()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/vendor/laravel/framework/src/Illuminate/Routing/Router.php:503)
  at Illuminate\Routing\Router->loadRoutes()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/vendor/laravel/framework/src/Illuminate/Routing/Router.php:457)
  at Illuminate\Routing\Router->group()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/vendor/laravel/framework/src/Illuminate/Routing/RouteRegistrar.php:192)
  at Illuminate\Routing\RouteRegistrar->group()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/app/Providers/RouteServiceProvider.php:37)
  at App\Providers\RouteServiceProvider->App\Providers\{closure}()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:36)
  at Illuminate\Container\BoundMethod::Illuminate\Container\{closure}()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/vendor/laravel/framework/src/Illuminate/Container/Util.php:41)
  at Illuminate\Container\Util::unwrapIfClosure()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:81)
  at Illuminate\Container\BoundMethod::callBoundMethod()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:37)
  at Illuminate\Container\BoundMethod::call()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/vendor/laravel/framework/src/Illuminate/Container/Container.php:661)
  at Illuminate\Container\Container->call()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php:120)
  at Illuminate\Foundation\Support\Providers\RouteServiceProvider->loadRoutes()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php:45)
  at Illuminate\Foundation\Support\Providers\RouteServiceProvider->Illuminate\Foundation\Support\Providers\{closure}()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:36)
  at Illuminate\Container\BoundMethod::Illuminate\Container\{closure}()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/vendor/laravel/framework/src/Illuminate/Container/Util.php:41)
  at Illuminate\Container\Util::unwrapIfClosure()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:81)
  at Illuminate\Container\BoundMethod::callBoundMethod()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:37)
  at Illuminate\Container\BoundMethod::call()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/vendor/laravel/framework/src/Illuminate/Container/Container.php:661)
  at Illuminate\Container\Container->call()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/vendor/laravel/framework/src/Illuminate/Support/ServiceProvider.php:119)
  at Illuminate\Support\ServiceProvider->callBootedCallbacks()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:1011)
  at Illuminate\Foundation\Application->bootProvider()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:989)
  at Illuminate\Foundation\Application->Illuminate\Foundation\{closure}()
  at array_walk()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:990)
  at Illuminate\Foundation\Application->boot()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php:17)
  at Illuminate\Foundation\Bootstrap\BootProviders->bootstrap()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:263)
  at Illuminate\Foundation\Application->bootstrapWith()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:186)
  at Illuminate\Foundation\Http\Kernel->bootstrap()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:170)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:144)
  at Illuminate\Foundation\Http\Kernel->handle()
     (/var/www/vhosts/loezarquitectura.com/bitacora.loezarquitectura.com/public/index.php:52)