現在、私のビューページに自分の好きなものを表示することができません。 これは私のビューブレードに表示したい行(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