<div class="manga-created pull-right">
<i class="fa fa-user"></i>
<small><?php echo $manga->user->username; ?>,</small>
<i class="fa fa-calendar-o"></i>
<small><?php echo App::make("HelperController")->formateCreationDate($manga->created_at); ?></small>
</div>
這裏這行是正在錯誤的非對象錯誤幫助屬性:因爲它看起來像一個$manga
或$manga->user
想要知道的請
<small><?php echo $manga->user->username; ?>,</small>
是什麼'$ manga'?你能提供一個vardump嗎? – bansi