@extends('layouts.master') @section('title', 'Gallery Admin') @section('css') @endsection @section('pageContent') @include('layouts.breadcrumb', ['title' => 'Gallery', 'subtitle' => 'Home', 'link' => 'admin.dashboard'])

Gallery Management

This is the list of all gallery. and you can manage them. with the help of this table.

@foreach($galleries as $gallery) @endforeach
Gallery Title Date Slider Active Action
Gallery Image {{ $gallery->gallery_name }} {{ $gallery->date }} @if($gallery->is_active) Active @else Inactive @endif
@endsection @section('scripts') @endsection