You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First of all: Thanks for this awesome and clean library, it has helped me a lot but today I've been struggling with my "main.slice.php" where I have <title>@yield('title', 'Placeholder')</title>, it works fine, but when I extend it is where the problem starts.
When I do @extends('main') @section('title', 'Hello')
It throws an error on eval'd code "Message: syntax error, unexpected '?'"
But it works fine if I add @endsection @extends('main') @section('title', 'Hello') @endsection