How to fix whitespace when creating Laravel title?
I created such a field in my Laravel app.blade.php file. <h1>@yield('heading')</h1> I use this in my about.blade.php file as follows. (phpstorm default spacings) @section('heading') TEST HEADING @endsection And I get an output like this. There's a lot of space and…