Esempio n. 1
0
 public function adminAdverts()
 {
     $adverts = Adverts::latest('created_at')->NotExpired()->get();
     $advertsExpired = Adverts::latest('created_at')->Expired()->get();
     $activeAdsSum = $this->CountAdminAds();
     $expiredAdsSum = $this->CountAdminAds();
     return view('adverts.owned', compact('adverts', 'advertsExpired', 'activeAdsSum', 'expiredAdsSum'));
 }