@extends('admin.layout') @section('content')

{{ __('Gallery') }}

{{ __('Gallery List:') }}

{{ __('Add') }}
@foreach ($galleries as $id=>$gallery) @endforeach
# {{ __('Image') }} {{ __('Title') }} {{ __('Category') }} {{ __('Status') }} {{ __('Action') }}
{{ ++$id }} {{ $gallery->title }} {{ $gallery->gcategory->name }} @if($gallery->status == 1) {{ __('Publish') }} @else {{ __('Unpublish') }} @endif {{ __('Edit') }}
@csrf
@endsection