@extends('dashboard.layouts.app') @section('title', __('dashboard.Items')) @section('page_heading', __('dashboard.Items')) @section('breadcrumb') @endsection @section('content')

{{ __('dashboard.Items') }}

{{ __('dashboard.Create Item') }}
{{ __('dashboard.Reset') }}
@forelse ($items as $item) @empty @endforelse
# {{ __('dashboard.Name') }} {{ __('dashboard.Item Category') }} {{ __('dashboard.Description') }} {{ __('dashboard.Active') }} {{ __('dashboard.Actions') }}
{{ $loop->iteration }} {{ $item->name }} {{ $item->itemCategory?->name ?? __('dashboard.Uncategorized') }} {{ $item->description ?? '-' }} @if ($item->is_active) {{ __('dashboard.Yes') }} @else {{ __('dashboard.No') }} @endif {{__('dashboard.Pricing')}}
{{ __('dashboard.No Data') }}
{{ $items->links() }}
@endsection