@extends('layouts.admin') @section('title', 'InstaKart Item Approvals') @section('header', 'InstaKart Item Approvals') @section('content')

Pending InstaKart Items

Store-created products remain hidden until approved.
@forelse($items as $item) @empty @endforelse
ItemStoreCategoryPriceDecision
{{ $item->name }}
{{ Str::limit($item->description, 70) }}
{{ $item->restaurant?->name }} {{ $item->category?->name ?? 'Uncategorised' }} {{ \App\Models\AppSetting::getValue('currency_symbol', '₹') }}{{ number_format((float) $item->price, 2) }}
@csrf @method('PUT')
@csrf @method('PUT')
No InstaKart items are waiting for approval.
{{ $items->links() }}
@endsection