Support the ongoing development of Laravel.io →
Installation Configuration Packages
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.

© 2024 Laravel.io - All rights reserved.