19. ErrorException
…\app\storage\views\63637bbc03b1fe97ce6670376c7207b511
18. Illuminate\View\Engines\CompilerEngine handleViewException
…\vendor\laravel\framework\src\Illuminate\View\Engines\PhpEngine.php41
17. Illuminate\View\Engines\PhpEngine evaluatePath
…\vendor\laravel\framework\src\Illuminate\View\Engines\CompilerEngine.php56
16. Illuminate\View\Engines\CompilerEngine get
…\vendor\laravel\framework\src\Illuminate\View\View.php134
15. Illuminate\View\View getContents
…\vendor\laravel\framework\src\Illuminate\View\View.php102
14. Illuminate\View\View renderContents
…\vendor\laravel\framework\src\Illuminate\View\View.php76
13. Illuminate\View\View render
…\vendor\laravel\framework\src\Illuminate\Http\Response.php70
12. Illuminate\Http\Response setContent
…\vendor\symfony\http-foundation\Symfony\Component\HttpFoundation\Response.php202
11. Symfony\Component\HttpFoundation\Response __construct
…\vendor\laravel\framework\src\Illuminate\Routing\Router.php1413
10. Illuminate\Routing\Router prepareResponse
…\vendor\laravel\framework\src\Illuminate\Routing\Router.php1003
9. Illuminate\Routing\Router dispatchToRoute
…\vendor\laravel\framework\src\Illuminate\Routing\Router.php968
8. Illuminate\Routing\Router dispatch
…\vendor\laravel\framework\src\Illuminate\Foundation\Application.php738
7. Illuminate\Foundation\Application dispatch
…\vendor\laravel\framework\src\Illuminate\Foundation\Application.php708
6. Illuminate\Foundation\Application handle
…\vendor\laravel\framework\src\Illuminate\Http\FrameGuard.php38
5. Illuminate\Http\FrameGuard handle
…\vendor\laravel\framework\src\Illuminate\Session\Middleware.php72
4. Illuminate\Session\Middleware handle
…\vendor\laravel\framework\src\Illuminate\Cookie\Queue.php47
3. Illuminate\Cookie\Queue handle
…\vendor\laravel\framework\src\Illuminate\Cookie\Guard.php51
2. Illuminate\Cookie\Guard handle
…\vendor\stack\builder\src\Stack\StackedHttpKernel.php23
1. Stack\StackedHttpKernel handle
…\vendor\laravel\framework\src\Illuminate\Foundation\Application.php606
0. Illuminate\Foundation\Application run
…\public\index.php49

ErrorException

Trying to get property of non-object (View: C:\inetpub\wwwroot\nextt-fr-pd\AWA\app\views\awa\orange\apply.blade.php)

<?php
	    	//recup du nom du champ REF dans advert depuis la config
	    	$the_ref = Config::get('awa.configuration.refAnnonceDbaFieldName');
?>

<div class="colonne-gauche-big">
<form class="bas-offres" role="form" method="post" action="<?php echo action('CandidaturesController@ApplyEnvoi'); ?>" enctype="multipart/form-data">
<input type="hidden" name="jobref" value="<?php echo $annonce->advert->$the_ref; ?>" >
<input type="hidden" name="theslug" value="<?php echo Str::slug($annonce->LIBELLE); ?>" >
<input type="hidden" name="thetitreu" value="<?php echo $annonce->LIBELLE; ?>" >
		// an exception is thrown. This prevents any partial views from leaking.
		try
		{
			include $__path;
		}
		catch (\Exception $e)
		{
			$this->handleViewException($e);
		}
 
		}
 
		$compiled = $this->compiler->getCompiledPath($path);
 
		// 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.
		$results = $this->evaluatePath($compiled, $data);
 
		array_pop($this->lastCompiled);
	/**
	 * Get the evaluated contents of the view.
	 *
	 * @return string
	 */
	protected function getContents()
	{
		return $this->engine->get($this->path, $this->gatherData());
	}
 
		// We will keep track of the amount 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->environment->incrementRender();
 
		$this->environment->callComposer($this);
 
		$contents = $this->getContents();
 
		// Once we've finished rendering the view, we'll decrement the render count
	 * Get the string contents of the view.
	 *
	 * @param  \Closure  $callback
	 * @return string
	 */
	public function render(Closure $callback = null)
	{
		$contents = $this->renderContents();
 
		$response = isset($callback) ? $callback($this, $contents) : null;
		}
 
		// If this content implements the "RenderableInterface", 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 RenderableInterface)
		{
			$content = $content->render();
		}
 
     * @throws \InvalidArgumentException When the HTTP status code is not valid
     *
     * @api
     */
    public function __construct($content = '', $status = 200, $headers = array())
    {
        $this->headers = new ResponseHeaderBag($headers);
        $this->setContent($content);
        $this->setStatusCode($status);
        $this->setProtocolVersion('1.0');
	 * @param  mixed  $response
	 * @return \Illuminate\Http\Response
	 */
	protected function prepareResponse($request, $response)
	{
		if ( ! $response instanceof SymfonyResponse)
		{
			$response = new Response($response);
		}
 
		$response = $this->callRouteBefore($route, $request);
 
		if (is_null($response))
		{
			$response = $route->run($request);
		}
 
		$response = $this->prepareResponse($request, $response);
 
		// After we have a prepared response from the route or filter we will call to
		// If no response was returned from the before filter, we will call the proper
		// route instance to get the response. If no route is found a response will
		// still get returned based on why no routes were found for this request.
		$response = $this->callFilter('before', $request);
 
		if (is_null($response))
		{
			$response = $this->dispatchToRoute($request);
		}
 
		}
 
		if ($this->runningUnitTests() && ! $this['session']->isStarted())
		{
			$this['session']->start();
		}
 
		return $this['router']->dispatch($this->prepareRequest($request));
	}
 
	{
		try
		{
			$this->refreshRequest($request = Request::createFromBase($request));
 
			$this->boot();
 
			return $this->dispatch($request);
		}
		catch (\Exception $e)
	 * @param  \Symfony\Component\HttpFoundation\Request  $request
	 * @param  int   $type
	 * @param  bool  $catch
	 * @return \Symfony\Component\HttpFoundation\Response
	 */
	public function handle(SymfonyRequest $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
	{
		$response = $this->app->handle($request, $type, $catch);
 
		$response->headers->set('X-Frame-Options', 'SAMEORIGIN', false);
		if ($this->sessionConfigured())
		{
			$session = $this->startSession($request);
 
			$request->setSession($session);
		}
 
		$response = $this->app->handle($request, $type, $catch);
 
		// Again, if the session has been configured we will need to close out the session
	 * @param  \Symfony\Component\HttpFoundation\Request  $request
	 * @param  int   $type
	 * @param  bool  $catch
	 * @return \Symfony\Component\HttpFoundation\Response
	 */
	public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
	{
		$response = $this->app->handle($request, $type, $catch);
 
		foreach ($this->cookies->getQueuedCookies() as $cookie)
	 * @param  \Symfony\Component\HttpFoundation\Request  $request
	 * @param  int   $type
	 * @param  bool  $catch
	 * @return \Symfony\Component\HttpFoundation\Response
	 */
	public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
	{
		return $this->encrypt($this->app->handle($this->decrypt($request), $type, $catch));
	}
 
    {
        $this->app = $app;
        $this->middlewares = $middlewares;
    }
 
    public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
    {
        return $this->app->handle($request, $type, $catch);
    }
 
	 * @param  \Symfony\Component\HttpFoundation\Request  $request
	 * @return void
	 */
	public function run(SymfonyRequest $request = null)
	{
		$request = $request ?: $this['request'];
 
		$response = with($stack = $this->getStackedClient())->handle($request);
 
		$response->send();
| 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 application we have whipped up for them.
|
*/
 
$app->run();
 
Key Value
PROCESSOR_ARCHITEW6432 AMD64
_FCGI_X_PIPE_ \\.\pipe\IISFCGI-5a9f1440-0400-4690-971e-865d2ac857b5
ALLUSERSPROFILE C:\ProgramData
APPDATA C:\Windows\system32\config\systemprofile\AppData\Roaming
APP_POOL_CONFIG C:\inetpub\temp\apppools\DefaultAppPool\DefaultAppPool.config
APP_POOL_ID DefaultAppPool
CommonProgramFiles C:\Program Files (x86)\Common Files
CommonProgramFiles(x86) C:\Program Files (x86)\Common Files
CommonProgramW6432 C:\Program Files\Common Files
COMPUTERNAME VMB8F95C6
ComSpec C:\Windows\system32\cmd.exe
FP_NO_HOST_CHECK NO
LOCALAPPDATA C:\Windows\system32\config\systemprofile\AppData\Local
NUMBER_OF_PROCESSORS 2
OS Windows_NT
Path C:\Perl64\site\bin;C:\Perl64\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\MySQL\MySQL Server 5.5\bin;C:\Program Files\Microsoft\Web Platform Installer\;c:\Program Files (x86)\Microsoft ASP.NET\ASP.NET Web Pages\v1.0\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\;
PATHEXT .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
PROCESSOR_ARCHITECTURE x86
PROCESSOR_IDENTIFIER Intel64 Family 6 Model 58 Stepping 0, GenuineIntel
PROCESSOR_LEVEL 6
PROCESSOR_REVISION 3a00
ProgramData C:\ProgramData
ProgramFiles C:\Program Files (x86)
ProgramFiles(x86) C:\Program Files (x86)
ProgramW6432 C:\Program Files
PSModulePath C:\Windows\system32\WindowsPowerShell\v1.0\Modules\
PUBLIC C:\Users\Public
SystemDrive C:
SystemRoot C:\Windows
TEMP C:\Windows\TEMP
TMP C:\Windows\TEMP
USERDOMAIN WG_B8F95C6
USERNAME VMB8F95C6$
USERPROFILE C:\Windows\system32\config\systemprofile
windir C:\Windows
ORIG_PATH_INFO /AWA/public/index.php/apply/FED-2120-NEXTT/responsable-du-controlling-groupe-hf
URL /AWA/public/index.php
SERVER_SOFTWARE Microsoft-IIS/8.5
SERVER_PROTOCOL HTTP/1.1
SERVER_PORT_SECURE 0
SERVER_PORT 80
SERVER_NAME nextt.fr
SCRIPT_NAME /AWA/public/index.php
SCRIPT_FILENAME C:\inetpub\wwwroot\nextt-fr-pd\AWA\public\index.php
REQUEST_URI /AWA/public/index.php/apply/FED-2120-NEXTT/responsable-du-controlling-groupe-hf
REQUEST_METHOD GET
REMOTE_USER
REMOTE_PORT 39620
REMOTE_HOST 44.210.86.29
REMOTE_ADDR 44.210.86.29
QUERY_STRING
PATH_TRANSLATED C:\inetpub\wwwroot\nextt-fr-pd\AWA\public\index.php\apply\FED-2120-NEXTT\responsable-du-controlling-groupe-hf
PATH_INFO /apply/FED-2120-NEXTT/responsable-du-controlling-groupe-hf
LOGON_USER
LOCAL_ADDR 82.223.18.241
INSTANCE_META_PATH /LM/W3SVC/1
INSTANCE_NAME NEXTT-FR-PD
INSTANCE_ID 1
HTTPS_SERVER_SUBJECT
HTTPS_SERVER_ISSUER
HTTPS_SECRETKEYSIZE
HTTPS_KEYSIZE
HTTPS off
GATEWAY_INTERFACE CGI/1.1
DOCUMENT_ROOT C:\inetpub\wwwroot\nextt-fr-pd
CONTENT_TYPE
CONTENT_LENGTH 0
CERT_SUBJECT
CERT_SERIALNUMBER
CERT_ISSUER
CERT_FLAGS
CERT_COOKIE
AUTH_USER
AUTH_PASSWORD
AUTH_TYPE
APPL_PHYSICAL_PATH C:\inetpub\wwwroot\nextt-fr-pd\
APPL_MD_PATH /LM/W3SVC/1/ROOT
WEBSOCKET_VERSION 13
HTTP_USER_AGENT claudebot
HTTP_HOST nextt.fr
HTTP_ACCEPT */*
FCGI_ROLE RESPONDER
PHP_SELF /AWA/public/index.php/apply/FED-2120-NEXTT/responsable-du-controlling-groupe-hf
REQUEST_TIME_FLOAT 1711727413.9041
REQUEST_TIME 1711727413
empty
empty
empty
empty
empty
empty
0. Whoops\Handler\PrettyPageHandler