Do you have a middleware that runs after the response is received and it prepends 'q' to it. Make sure you do a search on your app directory using your IDE or text editor, and look for 'q' :)
'q' is displayed on every page
I am getting a character 'q' on every page at the beginning of every page.
I have checked web.php, Model (Post.php), View, Controller (Post Controller), migration, public/index.php and it is not found anywhere but still when i run the app 'q' is displayed at the beginnnig.
I have even tried
Route::get('/', function(){ return "Hello"; });
The output is qHello
How to resolve it.
And it didnt work creating a new project, testing it with php artisan serve, and then copying each main folder over one by one (with a quick test in between each)? Shouldnt take long to test
My best bet is that you have a q just before <?php in some file. I just recreated it by adding one in my web.php
q<?php
Please or to participate in this conversation.