@extends('layouts.header') @section('title','View Gallery') @section('content')
View Gallery
@if ( Session::has('flash_message') ) @endif @if(count($gallery)>0)
@foreach ($gallery as $item) @endforeach
Category Name Image Status Actions
{{$item->category->name}} {{$item->name}} @if($item->status) Active @else Inactive @endif
{{$gallery->links()}} @else
No Images Found.
@endif
@endsection