@extends('Admin.layout.app') @section('title', 'Gallery') @section('page-title', 'Gallery') @section('content')
Gallery List
@foreach($gallery as $galley_img) @endforeach
Image Title Category Status Date Action
{{ $galley_img->title }} {{ $galley_img->title }}
{{ $galley_img->category ?? '' }} @if($galley_img->status == '1') Active @else($galley_img->status == '2') Un-Active @endif {{ \Carbon\Carbon::parse($galley_img->created_at)->format('d M Y h:i A') }} @if(($galley_img->status == '1')) @else @endif Update
{{ $gallery->links() }}
@endsection @push('js') @endpush