@extends('backend.admin-master') @section('site-title') {{__('Image Gallery Category')}} @endsection @section('style') @endsection @section('content')
@include('backend/partials/message') @if($errors->any())
    @foreach($errors->all() as $error)
  • {{$error}}
  • @endforeach
@endif

{{__('All Image Gallery Categories')}}

@php $b=0; @endphp @foreach($all_category as $key => $category)
@foreach($category as $data) @endforeach
{{__('ID')}} {{__('Name')}} {{__('Status')}} {{__('Action')}}
{{$data->id}} {{$data->title}} @if('publish' == $data->status) {{ucfirst($data->status)}} @else {{ucfirst($data->status)}} @endif
@php $b++; @endphp @endforeach

{{__('Add New Category')}}

@csrf
@endsection @section('script') @endsection