From 15041e0357c0469668a5c3503ce965adb0fa080c Mon Sep 17 00:00:00 2001 From: merdan Date: Sat, 28 Mar 2020 13:04:53 +0500 Subject: [PATCH] Venues public ready for Test --- app/Http/Controllers/PublicController.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Http/Controllers/PublicController.php b/app/Http/Controllers/PublicController.php index 114e4205..3ed14736 100644 --- a/app/Http/Controllers/PublicController.php +++ b/app/Http/Controllers/PublicController.php @@ -25,16 +25,16 @@ class PublicController extends Controller { public function showHomePage(){ $cinema = Category::where('view_type','cinema') - ->categoryLiveEvents(16) +// ->categoryLiveEvents(16) ->limit(1); $cartoon = Category::where('view_type','exhibition')//todo change to cartoon multik - ->categoryLiveEvents(16) +// ->categoryLiveEvents(16) ->limit(1) ->union($cinema); $musical = Category::where('view_type','concert') - ->categoryLiveEvents(8) +// ->categoryLiveEvents(8) ->limit(1) ->union($cartoon); $all = $musical->get();