APP_DEBUG is set to true while APP_ENV is not local

This could make your application vulnerable to remote execution. Read more about Ignition security.

/home/userfranchiseuae/public_html/
Illuminate\Contracts\Container\BindingResolutionException
Target class [App\Http\Controllers\] does not exist.
    • 31
      vendor/laravel/framework/src/Illuminate/Container/Container.php
      Illuminate\Container\Container
      :879
    • 30
      Illuminate\Container\Container
      :758
    • 1
      public/index.php
      :55
Illuminate\Container\Container::build
vendor/laravel/framework/src/Illuminate/Container/Container.php:879

864

865

866

867

868

869

870

871

872

873

874

875

876

877

878

879

880

881

882

883

884

885

886

887

888

889

890

891

892

893

894

* @throws \Illuminate\Contracts\Container\BindingResolutionException

* @throws \Illuminate\Contracts\Container\CircularDependencyException

*/

public function build($concrete)

{

// If the concrete type is actually a Closure, we will just execute it and

// hand back the results of the functions, which allows functions to be

// used as resolvers for more fine-tuned resolution of these objects.

if ($concrete instanceof Closure) {

return $concrete($this, $this->getLastParameterOverride());

}

 

try {

$reflector = new ReflectionClass($concrete);

} catch (ReflectionException $e) {

throw new BindingResolutionException("Target class [$concrete] does not exist.", 0, $e);

}

 

// If the type is not instantiable, the developer is attempting to resolve

// an abstract type such as an Interface or Abstract Class and there is

// no binding registered for the abstractions so we need to bail out.

if (! $reflector->isInstantiable()) {

return $this->notInstantiable($concrete);

}

 

$this->buildStack[] = $concrete;

 

$constructor = $reflector->getConstructor();

 

// If there are no constructors, that means there are no dependencies then

// we can just resolve the instances of the objects right away, without