@extends('backend.admin-master') @section('site-title') {{__('Image Gallery')}} @endsection @section('style') @endsection @section('content')
@include('backend.partials.message') @if($errors->any())
    @foreach($errors->all() as $error)
  • {{$error}}
  • @endforeach
@endif

{{__('Image Gallery')}}

@php $b=0; @endphp @foreach($all_gallery_images as $key => $galleries)
@foreach($galleries as $data) @endforeach
{{__('ID')}} {{__('Title')}} {{__('Image')}} {{__('Category')}} {{__('Action')}}
{{$data->id}} {{$data->title}} @php $testimonial_img = get_attachment_image_by_id($data->image,null,true); @endphp @if (!empty($testimonial_img))
@php $img_url = $testimonial_img['img_url']; @endphp @endif
{{get_image_category_name_by_id($data->cat_id)}}
@php $b++; @endphp @endforeach

{{__('Add New Image')}}

@csrf
{{__('1000x1000 px image recommended')}}
@include('backend.partials.media-upload.media-upload-markup') @endsection @section('script') @include('backend.partials.media-upload.media-js') @endsection