I'm currently learning Laravel, very new to it.
I have two routes setup like so:
Route::get('/', function () {
return view('welcome');
});
Route::get('/about', function () {
return view('pages.about');
});
In the 'pages.about' file I've inputted an <h1> with some random text to test it, however, when I navigate to that page in localhost all I get is a white page with the number '2' displayed. No errors, just '2':
Any ideas as to why this is happening?
File-tree if needed:
EDIT
about.blade.php:
kjnksjndkjnsdc
<h1>ijsoijsoijs</h1>

