I have a problem, I have a few months of experience in Laravel
and I did not see this type of problem happen, when submitting a form the following error appears:
Error Exception Trying to get property of non-object in LivroController.php (line 206)
I have seen this error several times, but when I go to the specified file and line, I realize that there is nothing on the line.
LivroController.php
if($aluno->StatusAluno == 1)
{
//Se o aluno já tenha um livro, ele retorna a mensagem
Session::flash('mensagemError','O aluno já tem um livro emprestado');
return redirect()
->action('MainController@index');
}
else
{
//esta é a linha 206, este comentário não existe no código
//------------Fim da verificação do Aluno--------------
//------------Verificação do Livro --------------
if($l->is_disp == 0) { ...
I already gave php artisan config:clear
in cmd
and did not change anything.