💄 Ajoute le compteur d'image

This commit is contained in:
Clement Desmidt 2020-03-10 17:05:21 +01:00
parent 7cec21bc21
commit 4bc1c97006
1 changed files with 3 additions and 1 deletions

View File

@ -39,7 +39,9 @@ class HomeController extends Controller
$month_counts = Post::where('user_id', $user_id)
->whereYear('date_post', $today->format('Y'))
->whereMonth('date_post', $today->format('m'))->count();
$image_counts = 0; // TODO #4
$image_counts = Post::where('user_id', Auth::user()->getAuthIdentifier())
->where('image', '!=', 'null')
->count();
$posts = Post::where('user_id', $user_id)->orderBy('date_post', 'DESC')->limit(9)->get();
$today_post = Post::whereDate('date_post', '=', $today->format('Y-m-d'))
->where('user_id', $user_id)