calendar fixes
This commit is contained in:
parent
7a6cf1e76f
commit
1e4eebe378
|
|
@ -7,6 +7,9 @@
|
||||||
<link rel="stylesheet" href="{{asset('vendor/jquery-ui/themes/base/jquery-ui.min.css')}}">
|
<link rel="stylesheet" href="{{asset('vendor/jquery-ui/themes/base/jquery-ui.min.css')}}">
|
||||||
@endsection
|
@endsection
|
||||||
@section('content')
|
@section('content')
|
||||||
|
<div class="row mt-2">
|
||||||
|
@include("Shared.Partials.FilterMenu")
|
||||||
|
</div>
|
||||||
@foreach($category->children as $cat)
|
@foreach($category->children as $cat)
|
||||||
@php
|
@php
|
||||||
$cat_events = $events->where('sub_category_id',$cat->id);
|
$cat_events = $events->where('sub_category_id',$cat->id);
|
||||||
|
|
@ -20,9 +23,6 @@
|
||||||
<a class="red_button" href="{{$cat->url}}">{{__("ClientSide.rep")}}</a>
|
<a class="red_button" href="{{$cat->url}}">{{__("ClientSide.rep")}}</a>
|
||||||
@endif
|
@endif
|
||||||
</div>
|
</div>
|
||||||
<div class="row mt-2">
|
|
||||||
@include("Shared.Partials.FilterMenu")
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="owl-carousel owl-theme" id="section-slider{{$loop->iteration}}">
|
<div class="owl-carousel owl-theme" id="section-slider{{$loop->iteration}}">
|
||||||
@foreach($cat_events as $event)
|
@foreach($cat_events as $event)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue