16. ErrorException
…/­app/­controllers/­HomeController.php2
15. Illuminate\Exception\Handler handleError
…/­vendor/­composer/­ClassLoader.php363
14. Composer\Autoload\includeFile
…/­vendor/­composer/­ClassLoader.php363
13. Composer\Autoload\includeFile
…/­vendor/­composer/­ClassLoader.php269
12. Composer\Autoload\ClassLoader loadClass
<#unknown>0
11. spl_autoload_call
<#unknown>0
10. ReflectionClass __construct
…/­vendor/­laravel/­framework/­src/­Illuminate/­Container/­Container.php308
9. Illuminate\Container\Container build
…/­vendor/­laravel/­framework/­src/­Illuminate/­Container/­Container.php250
8. Illuminate\Container\Container make
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­Application.php480
7. Illuminate\Foundation\Application make
…/­vendor/­laravel/­framework/­src/­Illuminate/­Routing/­Router.php983
6. Illuminate\Routing\Router Illuminate\Routing\{closure}
<#unknown>0
5. call_user_func_array
…/­vendor/­laravel/­framework/­src/­Illuminate/­Routing/­Route.php80
4. Illuminate\Routing\Route callCallable
…/­vendor/­laravel/­framework/­src/­Illuminate/­Routing/­Route.php47
3. Illuminate\Routing\Route run
…/­vendor/­laravel/­framework/­src/­Illuminate/­Routing/­Router.php1016
2. Illuminate\Routing\Router dispatch
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­Application.php576
1. Illuminate\Foundation\Application dispatch
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­Application.php552
0. Illuminate\Foundation\Application run
/­home/­findbvnl/­www.find-administraties.nl/­find-administraties.nl/­public_html/­index.php49

ErrorException

The use statement with non-compound name 'Content' has no effect

<?php
use \Content;
use \Template;
use \Layout;
use \BaseController;
use \Download;
use \Gallery;
use \Sidemenu;
 
class HomeController extends BaseController {
/**
 * Scope isolated include.
 *
 * Prevents access to $this/self from included files.
 */
function includeFile($file)
{
    include $file;
}
 
/**
 * Scope isolated include.
 *
 * Prevents access to $this/self from included files.
 */
function includeFile($file)
{
    include $file;
}
 
     *
     * @param  string    $class The name of the class
     * @return bool|null True if loaded, null otherwise
     */
    public function loadClass($class)
    {
        if ($file = $this->findFile($class)) {
            includeFile($file);
 
            return true;
<#unknown>
<#unknown>
		// 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, $parameters);
		}
 
		$reflector = new ReflectionClass($concrete);
 
		// If the type is not instantiable, the developer is attempting to resolve
		$concrete = $this->getConcrete($abstract);
 
		// We're ready to instantiate an instance of the concrete type registered for
		// the binding. This will instantiate the types, as well as resolve any of
		// its "nested" dependencies recursively until all have gotten resolved.
		if ($this->isBuildable($concrete, $abstract))
		{
			$object = $this->build($concrete, $parameters);
		}
		else
	public function make($abstract, $parameters = array())
	{
		if (isset($this->deferredServices[$abstract]))
		{
			$this->loadDeferredProvider($abstract);
		}
 
		return parent::make($abstract, $parameters);
	}
 
			$route = $me->getCurrentRoute();
 
			// We will extract the passed in parameters off of the route object so we will
			// pass them off to the controller method as arguments. We will not get the
			// defaults so that the controllers will be able to use its own defaults.
			$args = array_values($route->getParametersWithoutDefaults());
 
			$instance = $ioc->make($controller);
 
			return $instance->callAction($ioc, $me, $method, $args);
<#unknown>
	 *
	 * @return mixed
	 */
	protected function callCallable()
	{
		$variables = array_values($this->getParametersWithoutDefaults());
 
		return call_user_func_array($this->getOption('_call'), $variables);
	}
 
		// We will only call the router callable if no "before" middlewares returned
		// a response. If they do, we will consider that the response to requests
		// so that the request "lifecycle" will be easily halted for filtering.
		$response = $this->callBeforeFilters($request);
 
		if ( ! isset($response))
		{
			$response = $this->callCallable();
		}
 
		// Once we have the route, we can just run it to get the responses, which will
		// always be instances of the Response class. Once we have the responses we
		// will execute the global "after" middlewares to finish off the request.
		else
		{
			$this->currentRoute = $route = $this->findRoute($request);
 
			$response = $route->run($request);
		}
 
		if ($this->isDownForMaintenance())
		{
			$response = $this['events']->until('illuminate.app.down');
 
			if ( ! is_null($response)) return $this->prepareResponse($response, $request);
		}
 
		return $this['router']->dispatch($this->prepareRequest($request));
	}
 
	/**
	 * Handles the given request and delivers the response.
	 *
	 * @return void
	 */
	public function run()
	{
		$response = $this->dispatch($this['request']);
 
		$this['router']->callCloseFilter($this['request'], $response);
| Once we have the application, we can simply call the run method,
| which will execute the request and send the response back to
| the client's browser allowing them to enjoy the creative
| and wonderful applications we have created for them.
|
*/
 
$app->run();
 
/*
Key Value
USER findbvnl
HOME /home/findbvnl
FCGI_ROLE RESPONDER
QUERY_STRING
REQUEST_METHOD GET
CONTENT_TYPE
CONTENT_LENGTH
SCRIPT_FILENAME /home/findbvnl/www.find-administraties.nl/find-administraties.nl/public_html/index.php
SCRIPT_NAME /index.php
REQUEST_URI /
DOCUMENT_URI /index.php
DOCUMENT_ROOT /home/findbvnl/www.find-administraties.nl/find-administraties.nl/public_html
SERVER_PROTOCOL HTTP/2.0
GATEWAY_INTERFACE CGI/1.1
SERVER_SOFTWARE nginx/1.24.0
REMOTE_ADDR 3.235.227.36
REMOTE_PORT 55992
SERVER_ADDR 136.144.187.35
SERVER_PORT 443
SERVER_NAME www.find-administraties.nl
HTTPS on
REDIRECT_STATUS 200
HTTP_HOST www.find-administraties.nl
HTTP_ACCEPT */*
HTTP_USER_AGENT claudebot
HTTP_REFERER https://find-administraties.nl/
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1711663351.2169
REQUEST_TIME 1711663351
empty
empty
empty
empty
Key Value
_sf2_attributes Array ( [_token] => 3jQp902JyUJga1MMK1oQG465uPmeH0i1Zwbz7Hu1 )
_sf2_flashes Array ( )
_sf2_meta Array ( [u] => 1711663351 [c] => 1711663351 [l] => 7200 )
empty
0. Whoops\Handler\PrettyPageHandler