@extends('admin.layout.master') @section('title','ORDER MANAGEMENT') @section('custom_style') @endsection @section ('content')

CART {{$type==1?'RETURN':''}} LIST

@csrf
{{-- Branch Tab --}}
@if(count($shops)>0)
@elseif(count($parties)>0)
@elseif(count($orderEvents)>0)
@else
@endif
@forelse ($carts as $k=>$item) @empty @endforelse
# PRODUCT QTY X
{{ ($k+1) }} {{ $item->product->name_local }}

@endsection @section('script') @stop