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,
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community