@extends('layouts.admin') @section('content')

Product Page

@foreach ($products as $item) @endforeach
Category Shop Name Name Price Status Action
{{$item->category->name ?? ''}} {{$item->user->shop->shop_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
@csrf @method('PUT')
@if ($item->status == 1) @elseif ($item->status == 0) @elseif ($item->status == 2) @else @endif
{!! $products->links('pagination::bootstrap-4') !!}
@endsection