Hi,
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
Is that intended?
I'm working on HMVC btw
Thanks