我現在遇到問題,無法在我的查看頁面中顯示我的喜好。 這是我想要顯示在我的視圖刀片上的線(like_counter),但是一旦我調用它,我就會得到未定義的變量like_counter。Laravel未定義變量
public function getLikeCounter($post_id) {
$post = Post::find($post_id);
$number = null;
$like_counter = \DB::table('likes')->where('post_id', $post->id)->where('like',!$number)->count();
return View::make('layouts.viewvideo', ['like_counter' => $like_counter]);
}
檢視:
<span class="badge">{{ $like_counter}}</span>
途徑:
Route::get('/counter/{post_id}', [
'uses' => '[email protected]',
'as' => 'counter'
]);
謝謝你的幫助。
我試過了,還是一樣的 – Arthur
添加你的UI代碼 – Komal