@if (Auth::id() === $item->user->id)
| {{$item->qty}} |
{{$item->category->name ?? ''}} |
{{$item->name}} |
@foreach ($productPrices[$item->id]->sortByDesc('created_at') as $productPrice)
@if ($productPrice->is_active == 1)
₱{{ number_format($productPrice->price, 2, '.', ',') }}
@break
@endif
@endforeach
|
@if ($item->user_id == auth()->user()->id)
|
@if ($item->status == 2)
Blocked
@else
@endif
|
@endif
@endif
@endforeach