Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

How can I find wrong character in Laravel from Webside?

I am very very very new to the topic of Laravel and I am currently doing a tutorial that recreates the Instagram platform. Unfortunately, I probably mistyped at some point and now the letter "n" is at the top left of the web page. (see picture) I have already tried to find the letter with Chrome Inspect but it is not in my code. Is there another way to find this error?

Thanks in advance
screenshot

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

This normally occurs when you have left a letter or character outside a chunk of code. For Example;

 n
 <div>
    {{ some blade code here }}
    <div>
         {{ even more blade code here }}
    </div>
</div>

Notice the ‘n’ after the start of the div. Given the position of it in the screenshot you shared, I would start taking a look at your resources/views/layouts/app.blade.php ALternatively, if you use developer tools to "inspect" the erroneous n you might see in the overall html output where it is located

Hope this helps.

Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading