home page mobile changed

This commit is contained in:
merdan 2020-03-28 14:23:12 +05:00
parent 80b330ef9f
commit 828f9f7812
2 changed files with 6 additions and 2 deletions

View File

@ -36,9 +36,9 @@
@foreach($categories as $category)
<div class="section-section py-5 {{$category->view_type}}">
@include('mobile.Partials.HomeEventList',['category'=>$category])
</div>
@endforeach
@endsection

View File

@ -1,3 +1,5 @@
@if(!empty($category->events) && $category->events->count()>0)
<div class="section-section py-5 {{$category->view_type}}">
<div class="container" style="padding: 0 12px !important; margin-bottom: 15px;">
<div class="row">
<div class="col-12 d-flex justify-content-between">
@ -15,4 +17,6 @@
</div>
@endforeach
</div>
</div>
@endif