@extends('backend.layouts.grid') @section('title', __('Galleries')) @section('link', route('admin.galleries.create')) @section('content')

{{ __('Photos') }}

{{ $totalPhotos }}

{{ __('Videos') }}

{{ $totalVideos }}

@if(count($galleryPhotos) > 0)
@php $sn = 1; @endphp @foreach ($galleryPhotos as $gallery) @endforeach
{{ __('#') }} {{ __('Title') }} {{ __('Photo') }} {{ __('Action') }}
{{ $gallery->id }} {{ $gallery->title }}
@if($galleries) @foreach($galleries as $rrr) @if($gallery->id == $rrr->gallery_id)

featured_status == 1)?"checked":"" }} onclick="return confirmationFeatured('{{ $rrr->id }}')" >
@endif @endforeach @endif
@else
@include('backend.includes.empty')
@endif
@push('top_scripts') @endpush @endsection