MOON
Server: Apache
System: Linux ip-208-109-13-31.ip.secureserver.net 3.10.0-1160.119.1.el7.tuxcare.els4.x86_64 #1 SMP Sat Aug 31 06:58:57 UTC 2024 x86_64
User: durgeshpandey215 (1013)
PHP: 8.1.29
Disabled: NONE
Upload Files
File: /home/durgeshpandey215/public_html/mykarma.skilladders.com/resources/views/ngogarlary.blade.php
@extends('layouts.app')
@section('title','My Karma Foundation | Gallery ')

@section('style')
<link rel="stylesheet" href="{{url('/assets/css/style.css')}}">
<link rel="stylesheet" href="{{url('/assets/css/theme.css')}}">
<link rel="stylesheet" href="{{url('/assets/css/work.css')}}">
<link rel="stylesheet" href="{{url('/assets/css/gallery.css')}}">


@stop
@section('content')
@include('common.navigation')

<h1 class="text-center position-relative lazyMonday mt-5">
    <span class="position-relative fw-600">
        {{$album->name}}
        <img src="{{url('/assets/img/hrt.png')}}" alt="" height="30" class="position-absolute gh1">
        <img src="{{url('/assets/img/e1.png')}}" alt="" height="24" class="position-absolute gh2">

    </span>
</h1>

<div class="container my-5 ">
    <div class="row">
        @php
        $counter = 1; // Initialize a counter variable
    @endphp
        @foreach ($album->gallery as $item)
            <div class="col-md-4 mt-4">
                <a data-fslightbox href="#{{ $album->name }}{{ $counter }}" class="">
                    <div class="swiper-slide h-auto">
                        <img id="{{ $album->name }}{{ $counter }}" src="{{url($item->image)}}" alt="{{$album->name}}" class="img-cover rounded-4">
                    </div>
                </a>
            </div>
            @php
            $counter++; 
        @endphp
        @endforeach
      
     
    </div>
</div>


@include('common.footer')
@section('script')

@stop
@stop