bartje1974 said:
Look at the line ->render();?>;?> ;)
Yep, that's the problem. But this part is given by the Laravel debugger. I don't know why Laravel generate this double "?>". I've tried to find the origine, but I don't have any clue. Some views work, but others give me this error.
I removed the file in "\app\storage\views" and now it works for one view but not for the other ones. This works :
<body>
<div class="content">
<div class="container">
@yield("content")
</div>
</div>
</body>
but not this :
<body>
<div class="content">
<div class="container">
@yield("content")
</div>
</div>
@include('footer')
</body>
The @include('footer') generate :
<?php echo $__env->make('footer', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>; ?>
with again the "?>; ?>".
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community