@extends('master') @section('content')
@include('admin.layout.breadcrumbs', [ 'title' => __('Category'), ])
@if (session('status')) @endif

{{ __('View Category') }}

@can('category_create') @endcan
@if (Gate::check('category_edit') || Gate::check('category_delete')) @endif @foreach ($category as $item) @if (Gate::check('category_edit') || Gate::check('category_delete')) @endif @endforeach
{{ __('Image') }} {{ __('Name') }} {{ __('Total Events') }} {{ __('Status') }}{{ __('Action') }}
{{ $item->name }} {{ App\Models\Event::where([['is_deleted', 0], ['category_id', $item->id]])->count() }}
{{ $item->status == '1' ? 'Active' : 'Inactive' }}
@can('category_edit') @endcan
@endsection