Payment Options

'

Payment Options




Premium

₹ 5999/-
  • Single Pages Website
  • Full Company Detail
  • Custom Layout Design
  • Compatible with Laptop, Tablet, Mobile, TV
  • Quick Inquiry for products
  • WhatsApp, Google Map, & Social Integration
  • Contact Us
  • Map to Your Business
  • Integrated Contact Forms Captcha

CORPORATE

₹ 18000/-
  • 5-10 Pages with Content
  • Special Announcement Popup
  • Digital Visting Card
  • Full Company Detail
  • Home Page Dynamic Slider
  • Custom Layout Design
  • Compatible with Laptop, Tablet, Mobile, TV
  • Quick Inquiry for products
  • SEO Semantic Html Code
  • WhatsApp, Google Map, & Social Integration
  • Feedback Form
  • Contact Us
  • Map to Your Business
  • Fast Load Times
  • Integrated Contact Forms Captcha
  • News Letter Integration

E-Commerce

₹ 35000/-
  • Catalog Management
  • Design Management
  • Sales Management
  • Customers
  • Marketing Manager
  • System Manager
  • Reports Management
  • Royalty Points Management

Paywith UPI

Pay With bank

Bank Name: Federal Bank
Company Name: BLUELINE SOLUTIONS
Acc No.: 13720200009114
IFSC: FDRL0001372
Acc Type: Current




Google Pay: 91 84013 82013

Please provide a valid cache path. (500 Internal Server Error)

Symfony Exception

InvalidArgumentException

HTTP 500 Internal Server Error

Please provide a valid cache path.

Exception

InvalidArgumentException

  1.         $basePath '',
  2.         $shouldCache true,
  3.         $compiledExtension 'php')
  4.     {
  5.         if (! $cachePath) {
  6.             throw new InvalidArgumentException('Please provide a valid cache path.');
  7.         }
  8.         $this->files $files;
  9.         $this->cachePath $cachePath;
  10.         $this->basePath $basePath;
  1.      * @return void
  2.      */
  3.     public function registerBladeCompiler()
  4.     {
  5.         $this->app->singleton('blade.compiler', function ($app) {
  6.             return tap(new BladeCompiler(
  7.                 $app['files'],
  8.                 $app['config']['view.compiled'],
  9.                 $app['config']->get('view.relative_hash'false) ? $app->basePath() : '',
  10.                 $app['config']->get('view.cache'true),
  11.                 $app['config']->get('view.compiled_extension''php'),
  1.         // used as resolvers for more fine-tuned resolution of these objects.
  2.         if ($concrete instanceof Closure) {
  3.             $this->buildStack[] = spl_object_hash($concrete);
  4.             try {
  5.                 return $concrete($this$this->getLastParameterOverride());
  6.             } finally {
  7.                 array_pop($this->buildStack);
  8.             }
  9.         }
  1.         // We're ready to instantiate an instance of the concrete type registered for
  2.         // the binding. This will instantiate the types, as well as resolve any of
  3.         // its "nested" dependencies recursively until all have gotten resolved.
  4.         $object $this->isBuildable($concrete$abstract)
  5.             ? $this->build($concrete)
  6.             : $this->make($concrete);
  7.         // If we defined any extenders for this type, we'll need to spin through them
  8.         // and apply them to the object being built. This allows for the extension
  9.         // of services, such as changing configuration or decorating the object.
  1.      */
  2.     protected function resolve($abstract$parameters = [], $raiseEvents true)
  3.     {
  4.         $this->loadDeferredProviderIfNeeded($abstract $this->getAlias($abstract));
  5.         return parent::resolve($abstract$parameters$raiseEvents);
  6.     }
  7.     /**
  8.      * Load the deferred provider if the given type is a deferred service and the instance has not been loaded.
  9.      *
  1.      *
  2.      * @throws \Illuminate\Contracts\Container\BindingResolutionException
  3.      */
  4.     public function make($abstract, array $parameters = [])
  5.     {
  6.         return $this->resolve($abstract$parameters);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      *
  1.      */
  2.     public function make($abstract, array $parameters = [])
  3.     {
  4.         $this->loadDeferredProviderIfNeeded($abstract $this->getAlias($abstract));
  5.         return parent::make($abstract$parameters);
  6.     }
  7.     /**
  8.      * Resolve the given type from the container.
  9.      *
  1.     protected function resolveClass(ReflectionParameter $parameter)
  2.     {
  3.         try {
  4.             return $parameter->isVariadic()
  5.                         ? $this->resolveVariadicClass($parameter)
  6.                         : $this->make(Util::getParameterClassName($parameter));
  7.         }
  8.         // If we can not resolve the class instance, we will check to see if the value
  9.         // is optional, and if it is we will return the optional parameter value as
  10.         // the value of the dependency, similarly to how we do this with scalars.
  1.             // If the class is null, it means the dependency is a string or some other
  2.             // primitive type which we can not resolve since it is not a class and
  3.             // we will just bomb out with an error since we have no-where to go.
  4.             $result ??= is_null(Util::getParameterClassName($dependency))
  5.                             ? $this->resolvePrimitive($dependency)
  6.                             : $this->resolveClass($dependency);
  7.             $this->fireAfterResolvingAttributeCallbacks($dependency->getAttributes(), $result);
  8.             if ($dependency->isVariadic()) {
  9.                 $results array_merge($results$result);
  1.         // Once we have all the constructor's parameters we can create each of the
  2.         // dependency instances and then use the reflection instances to make a
  3.         // new instance of this class, injecting the created dependencies in.
  4.         try {
  5.             $instances $this->resolveDependencies($dependencies);
  6.         } catch (BindingResolutionException $e) {
  7.             array_pop($this->buildStack);
  8.             throw $e;
  9.         }
  1.         // We're ready to instantiate an instance of the concrete type registered for
  2.         // the binding. This will instantiate the types, as well as resolve any of
  3.         // its "nested" dependencies recursively until all have gotten resolved.
  4.         $object $this->isBuildable($concrete$abstract)
  5.             ? $this->build($concrete)
  6.             : $this->make($concrete);
  7.         // If we defined any extenders for this type, we'll need to spin through them
  8.         // and apply them to the object being built. This allows for the extension
  9.         // of services, such as changing configuration or decorating the object.
  1.      */
  2.     protected function resolve($abstract$parameters = [], $raiseEvents true)
  3.     {
  4.         $this->loadDeferredProviderIfNeeded($abstract $this->getAlias($abstract));
  5.         return parent::resolve($abstract$parameters$raiseEvents);
  6.     }
  7.     /**
  8.      * Load the deferred provider if the given type is a deferred service and the instance has not been loaded.
  9.      *
  1.      *
  2.      * @throws \Illuminate\Contracts\Container\BindingResolutionException
  3.      */
  4.     public function make($abstract, array $parameters = [])
  5.     {
  6.         return $this->resolve($abstract$parameters);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      *
  1.      */
  2.     public function make($abstract, array $parameters = [])
  3.     {
  4.         $this->loadDeferredProviderIfNeeded($abstract $this->getAlias($abstract));
  5.         return parent::make($abstract$parameters);
  6.     }
  7.     /**
  8.      * Resolve the given type from the container.
  9.      *
  1.             return new Renderer(
  2.                 $app->make(Factory::class),
  3.                 $app->make(Listener::class),
  4.                 $errorRenderer,
  5.                 $app->make(BladeMapper::class),
  6.                 $app->basePath(),
  7.             );
  8.         });
  9.         $this->app->singleton(Listener::class);
in /home5/w3wcom/lw/vendor/laravel/framework/src/Illuminate/Container/Container.php -> Illuminate\Foundation\Providers\{closure} (line 931)
  1.         // used as resolvers for more fine-tuned resolution of these objects.
  2.         if ($concrete instanceof Closure) {
  3.             $this->buildStack[] = spl_object_hash($concrete);
  4.             try {
  5.                 return $concrete($this$this->getLastParameterOverride());
  6.             } finally {
  7.                 array_pop($this->buildStack);
  8.             }
  9.         }
  1.         // We're ready to instantiate an instance of the concrete type registered for
  2.         // the binding. This will instantiate the types, as well as resolve any of
  3.         // its "nested" dependencies recursively until all have gotten resolved.
  4.         $object $this->isBuildable($concrete$abstract)
  5.             ? $this->build($concrete)
  6.             : $this->make($concrete);
  7.         // If we defined any extenders for this type, we'll need to spin through them
  8.         // and apply them to the object being built. This allows for the extension
  9.         // of services, such as changing configuration or decorating the object.
  1.      */
  2.     protected function resolve($abstract$parameters = [], $raiseEvents true)
  3.     {
  4.         $this->loadDeferredProviderIfNeeded($abstract $this->getAlias($abstract));
  5.         return parent::resolve($abstract$parameters$raiseEvents);
  6.     }
  7.     /**
  8.      * Load the deferred provider if the given type is a deferred service and the instance has not been loaded.
  9.      *
  1.      *
  2.      * @throws \Illuminate\Contracts\Container\BindingResolutionException
  3.      */
  4.     public function make($abstract, array $parameters = [])
  5.     {
  6.         return $this->resolve($abstract$parameters);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      *
  1.      */
  2.     public function make($abstract, array $parameters = [])
  3.     {
  4.         $this->loadDeferredProviderIfNeeded($abstract $this->getAlias($abstract));
  5.         return parent::make($abstract$parameters);
  6.     }
  7.     /**
  8.      * Resolve the given type from the container.
  9.      *
  1.         try {
  2.             if (config('app.debug')) {
  3.                 if (app()->has(ExceptionRenderer::class)) {
  4.                     return $this->renderExceptionWithCustomRenderer($e);
  5.                 } elseif ($this->container->bound(Renderer::class)) {
  6.                     return $this->container->make(Renderer::class)->render(request(), $e);
  7.                 }
  8.             }
  9.             return $this->renderExceptionWithSymfony($econfig('app.debug'));
  10.         } catch (Throwable $e) {
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function convertExceptionToResponse(Throwable $e)
  4.     {
  5.         return new SymfonyResponse(
  6.             $this->renderExceptionContent($e),
  7.             $this->isHttpException($e) ? $e->getStatusCode() : 500,
  8.             $this->isHttpException($e) ? $e->getHeaders() : []
  9.         );
  10.     }
  1.      * @return \Illuminate\Http\Response|\Illuminate\Http\JsonResponse|\Illuminate\Http\RedirectResponse
  2.      */
  3.     protected function prepareResponse($requestThrowable $e)
  4.     {
  5.         if (! $this->isHttpException($e) && config('app.debug')) {
  6.             return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e)->prepare($request);
  7.         }
  8.         if (! $this->isHttpException($e)) {
  9.             $e = new HttpException(500$e->getMessage(), $e);
  10.         }
  1.      */
  2.     protected function renderExceptionResponse($requestThrowable $e)
  3.     {
  4.         return $this->shouldReturnJson($request$e)
  5.                     ? $this->prepareJsonResponse($request$e)
  6.                     : $this->prepareResponse($request$e);
  7.     }
  8.     /**
  9.      * Convert an authentication exception into a response.
  10.      *
  1.         return $this->finalizeRenderedResponse($request, match (true) {
  2.             $e instanceof HttpResponseException => $e->getResponse(),
  3.             $e instanceof AuthenticationException => $this->unauthenticated($request$e),
  4.             $e instanceof ValidationException => $this->convertValidationExceptionToResponse($e$request),
  5.             default => $this->renderExceptionResponse($request$e),
  6.         }, $e);
  7.     }
  8.     /**
  9.      * Prepare the final, rendered response to be returned to the browser.
  1.      * @param  \Throwable  $e
  2.      * @return void
  3.      */
  4.     protected function renderHttpResponse(Throwable $e)
  5.     {
  6.         $this->getExceptionHandler()->render(static::$app['request'], $e)->send();
  7.     }
  8.     /**
  9.      * Handle the PHP shutdown event.
  10.      *
  1.             if ($exceptionHandlerFailed ?? false) {
  2.                 exit(1);
  3.             }
  4.         } else {
  5.             $this->renderHttpResponse($e);
  6.         }
  7.     }
  8.     /**
  9.      * Render an exception to the console.
  1.      * @return callable
  2.      */
  3.     protected function forwardsTo($method)
  4.     {
  5.         return fn (...$arguments) => static::$app
  6.             $this->{$method}(...$arguments)
  7.             : false;
  8.     }
  9.     /**
  10.      * Determine if the error level is a deprecation.
HandleExceptions->Illuminate\Foundation\Bootstrap\{closure}(object(PhonePeException))

Stack Trace

InvalidArgumentException
InvalidArgumentException:
Please provide a valid cache path.

  at /home5/w3wcom/lw/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
  at Illuminate\View\Compilers\Compiler->__construct(object(Filesystem), false, '', true, 'php')
     (/home5/w3wcom/lw/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php:97)
  at Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}(object(Application), array())
     (/home5/w3wcom/lw/vendor/laravel/framework/src/Illuminate/Container/Container.php:931)
  at Illuminate\Container\Container->build(object(Closure))
     (/home5/w3wcom/lw/vendor/laravel/framework/src/Illuminate/Container/Container.php:815)
  at Illuminate\Container\Container->resolve('blade.compiler', array(), true)
     (/home5/w3wcom/lw/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:1046)
  at Illuminate\Foundation\Application->resolve('blade.compiler', array())
     (/home5/w3wcom/lw/vendor/laravel/framework/src/Illuminate/Container/Container.php:751)
  at Illuminate\Container\Container->make('blade.compiler', array())
     (/home5/w3wcom/lw/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:1028)
  at Illuminate\Foundation\Application->make('blade.compiler')
     (/home5/w3wcom/lw/vendor/laravel/framework/src/Illuminate/Container/Container.php:1112)
  at Illuminate\Container\Container->resolveClass(object(ReflectionParameter))
     (/home5/w3wcom/lw/vendor/laravel/framework/src/Illuminate/Container/Container.php:1022)
  at Illuminate\Container\Container->resolveDependencies(array(object(ReflectionParameter), object(ReflectionParameter)))
     (/home5/w3wcom/lw/vendor/laravel/framework/src/Illuminate/Container/Container.php:973)
  at Illuminate\Container\Container->build('Illuminate\\Foundation\\Exceptions\\Renderer\\Mappers\\BladeMapper')
     (/home5/w3wcom/lw/vendor/laravel/framework/src/Illuminate/Container/Container.php:815)
  at Illuminate\Container\Container->resolve('Illuminate\\Foundation\\Exceptions\\Renderer\\Mappers\\BladeMapper', array(), true)
     (/home5/w3wcom/lw/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:1046)
  at Illuminate\Foundation\Application->resolve('Illuminate\\Foundation\\Exceptions\\Renderer\\Mappers\\BladeMapper', array())
     (/home5/w3wcom/lw/vendor/laravel/framework/src/Illuminate/Container/Container.php:751)
  at Illuminate\Container\Container->make('Illuminate\\Foundation\\Exceptions\\Renderer\\Mappers\\BladeMapper', array())
     (/home5/w3wcom/lw/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:1028)
  at Illuminate\Foundation\Application->make('Illuminate\\Foundation\\Exceptions\\Renderer\\Mappers\\BladeMapper')
     (/home5/w3wcom/lw/vendor/laravel/framework/src/Illuminate/Foundation/Providers/FoundationServiceProvider.php:257)
  at Illuminate\Foundation\Providers\FoundationServiceProvider->Illuminate\Foundation\Providers\{closure}(object(Application), array())
     (/home5/w3wcom/lw/vendor/laravel/framework/src/Illuminate/Container/Container.php:931)
  at Illuminate\Container\Container->build(object(Closure))
     (/home5/w3wcom/lw/vendor/laravel/framework/src/Illuminate/Container/Container.php:815)
  at Illuminate\Container\Container->resolve('Illuminate\\Foundation\\Exceptions\\Renderer\\Renderer', array(), true)
     (/home5/w3wcom/lw/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:1046)
  at Illuminate\Foundation\Application->resolve('Illuminate\\Foundation\\Exceptions\\Renderer\\Renderer', array())
     (/home5/w3wcom/lw/vendor/laravel/framework/src/Illuminate/Container/Container.php:751)
  at Illuminate\Container\Container->make('Illuminate\\Foundation\\Exceptions\\Renderer\\Renderer', array())
     (/home5/w3wcom/lw/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:1028)
  at Illuminate\Foundation\Application->make('Illuminate\\Foundation\\Exceptions\\Renderer\\Renderer')
     (/home5/w3wcom/lw/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:845)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionContent(object(PhonePeException))
     (/home5/w3wcom/lw/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:826)
  at Illuminate\Foundation\Exceptions\Handler->convertExceptionToResponse(object(PhonePeException))
     (/home5/w3wcom/lw/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:805)
  at Illuminate\Foundation\Exceptions\Handler->prepareResponse(object(Request), object(PhonePeException))
     (/home5/w3wcom/lw/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:704)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionResponse(object(Request), object(PhonePeException))
     (/home5/w3wcom/lw/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:592)
  at Illuminate\Foundation\Exceptions\Handler->render(object(Request), object(PhonePeException))
     (/home5/w3wcom/lw/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:219)
  at Illuminate\Foundation\Bootstrap\HandleExceptions->renderHttpResponse(object(PhonePeException))
     (/home5/w3wcom/lw/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:196)
  at Illuminate\Foundation\Bootstrap\HandleExceptions->handleException(object(PhonePeException))
     (/home5/w3wcom/lw/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:256)
  at Illuminate\Foundation\Bootstrap\HandleExceptions->Illuminate\Foundation\Bootstrap\{closure}(object(PhonePeException))