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

{{$type==1?__('obs.cart_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
# {{__('obs.product')}} {{__('obs.qty')}} {{__('obs.x')}}
{{ ($k+1) }} {{ $item->product->name_local }}

@endsection @section('script') @stop