@smardoox Try eager loading your data first. $quest = Question::with('users')->where('solved', '=...
Your argument inside with needs to match the method name for your relationship. In other words, if y...
Okay. Yea, that's the problem. Laravel 5.0 worked fine with PHP 5.4, but Laravel 5.1 requires PHP &g...
Laravel 5.1 requires PHP >= 5.5.9. Have you checked your PHP version?
{!! Form::text('agentName',null,['class'=>'form-control']) !!} Shouldn't agent_name should be ag...
The Laravel portal for problem solving, knowledge sharing and community building.