Venues public ready for Test

This commit is contained in:
merdan 2020-03-28 13:33:22 +05:00
parent 876acfc340
commit 94cf0ceb58
1 changed files with 2 additions and 3 deletions

View File

@ -30,13 +30,12 @@ class PublicController extends Controller
$cartoon = Category::where('view_type','exhibition')//todo change to cartoon multik
->categoryLiveEvents(16)
->take(1)
->union($cinema);
->take(1);
$musical = Category::where('view_type','concert')
// ->categoryLiveEvents(8)
->take(1)
->unionAll($cartoon);
->unionAll($cartoon,$cinema);
$all = $musical->get();
dd($all);