Skip to content
Advertisement

Laravel: getting blade components syntax error, unexpected ‘endif’ (T_ENDIF), expecting end of file

I am learning laravel on Laracast however I am having some issues

I have this code on file components/layout.blade.php

JavaScript

And this on main.blade.php which is the page the view redirects to

JavaScript

For some reason Laravel is returning this error:

JavaScript

Advertisement

Answer

I found what was causing the problem, I had a space between content and ="Hello There" by removing it and leaving it like content="Hello There" solves the problem.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement