@extends('layouts.admin') @section('title') @lang('Categories') @endsection @section('breadcrumb')

@lang('Categories')

@endsection @section('content')
@forelse ($categories as $item) @empty @endforelse
@lang('Photo') @lang('Name') @lang('Status') @lang('Action')
{{ $item->name }} @if ($item->status == 1) @lang('Active') @else @lang('Inactive') @endif
@lang('No Data Found')
@endsection @push('script') @endpush