@extends('admin.master') @section('main')

Gallery Photo Manage

@if( session('success') )

{{ session('success') }}

@endif @if( session('message') )

{{ session('message') }}

@endif @if( session('errorr') )

{{ session('errorr') }}

@endif
@foreach($gallery_photos as $gallery_photo) @endforeach
Sl No. Image Status Action
{{ $loop->iteration }} {{ $gallery_photo->status == 1 ? 'Published' : 'UnPublished' }}
@csrf @method('DELETE')
@endsection