@extends('admin.layouts.master') @section('title', 'Gallery Management') @section('parent_title', 'Dashboard') @section('content')
Export
@if(session('success'))
{{ session('success') }}
@endif @foreach($galleries as $gallery) @endforeach
S.No Image Category Status Actions
{{ $loop->iteration }}
{{ ucwords(str_replace('_', ' ', $gallery->category)) }}
{{ $gallery->status ? 'Active' : 'Inactive' }}
Actions
Showing {{ $galleries->firstItem() }} to {{ $galleries->lastItem() }} of {{ $galleries->total() }} entries
{{ $galleries->links() }}
@endsection @section('scripts') @endsection