Alex Martins
Alex Martins

Reputation: 33

Strange character Laravel

I am using Laravel 5.3

Hello,

A stranger character "-" is showing at every pages.

See my files: My Controller Result in html

My View blade contains only a single <h1> tag.

<h1>New Test</h1>

Upvotes: 0

Views: 789

Answers (1)

Christophvh
Christophvh

Reputation: 13254

Since it's appearing on every page, you will have 2 main places where it will be:

  1. The top of your web/routes.php file.
  2. It will most likely be located inside your layout file. And you probably are looking for the extra '-' inside your view file which extends the layout file.

Upvotes: 2

Related Questions