Support the ongoing development of Laravel.io →
Installation Configuration Packages

Hello this is my first time to post thread I am looking forward more to come! I m working on my tutorial via Teamtreehouse and following their tutorial what do I see their video presentation when they get any of error its showing colorful black screen on right side. and tell you the top "undefined variable" etc etc...

What I am trying to follow their tutorial everything work property fine. I noticed mine is different error by said "Whoops". It does not tell me the details where is the error. I am using the Window PC after I downloaded and open the composer and Vagrant without the Virtual Box. It was fine work. Have any one experience through this before? Is that normal?

Last updated 2 years ago.
0

Hello ironheartbj18 :),

Youhave to configue your application to report errors, by default laravel is in production mode, so it do not return details about errors, to do this, go to your app folder (app/config/app.php), you will find 'debug' => false, turn in to true and it will work fine.

<?php

return array(

	/*
	|--------------------------------------------------------------------------
	| Application Debug Mode
	|--------------------------------------------------------------------------
	|
	| When your application is in debug mode, detailed error messages with
	| stack traces will be shown on every error that occurs within your
	| application. If disabled, a simple generic error page is shown.
	|
	*/

	'debug' => true,

Last updated 2 years ago.
0

it works! thanks!

Last updated 2 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2025 Laravel.io - All rights reserved.