@php $cont = 1; @endphp
        @foreach(getPostsByType('slider') as $post)  
        <div class="carousel-item {{$cont == 1 ? 'active':''}} ">
            <img src="{!! asset('public/uploads/' . $post->thumbnail_path) ?? '' !!}" class=" w-100" alt="...">
            <div class="carousel-caption text-white mbbg_color1">
                <h5 class="text-white">{{$post->title}}</h5>
                <p class="pb-2">{{$post->excerpt}}</p>
                <a href="{{$post->option_2}}" class="mobail-v_but mt-3">{{$post->option_1}}</a>
            </div>
        </div>
        @php $cont++; @endphp    
        @endforeach