In Laravel 5.0.27 I am including a view with with a variable and the following code:
@include('layouts.article', [
'mainTitle' => "404, page not found",
'mainContent' => "sorry, but the requested page does not exist :("
])
and I get the following error...
FatalErrorException syntax ... error, unexpected ','
I've narrowed down that the error is solely from the "(" in the "mainContent" variable string, and when I remove the "(" the error disappears and everything runs fine. I can't find anything in documentation on this or any similar errors listed online.
Does anyone know if this is expected behavior or if this is a bug that should be reported?
Thanks so much for your time!