我在他的網站上跟着Jeffrey Ways laracasts一起學習,但是很不幸,我在某個地方犯了一個錯誤,我不知道它在哪裏。我收到以下錯誤。「刀片中的意外_data T_String」,Laravel
https://laracasts.com/series/laravel-from-scratch
Symfony \ Component \ Debug \ Exception \ FatalErrorException
syntax error, unexpected '__data' (T_STRING)
<?php $__env->startSection('content'); ?>
<h1>All Users</h1>
<?php foreach($users as $user): ?>
<li><?php echo link_to("https://stackoverflow.com/users/{$user->username}", $user->username); ?></li>
<?php endforeach; ?>;
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.default, array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
我不太清楚爲什麼我得到這個問題。有人可以向我解釋,所以我可以理解嗎?
看起來像''layouts.default'後面缺少單引號。請參閱您的問題中的語法突出顯示以供進一步參考。 –