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

All Products

Reset
@php $i = 0; @endphp @foreach ($products as $item) @endforeach @if ($products->count() === 0) @endif
Sr.No Image Title Type Description Worn Days Price Payment Status Status
{{ ++$i }} {{ $item->title }} {{ $item->type }} {{ \Illuminate\Support\Str::limit(strip_tags($item->description), 30, '...') }} {{ $item->worn_days }} ${{ $item->price }} @if ($item->sellerpayment)

{{ $item->sellerpayment->payment_status }} @else

Not Paid

@endif
@csrf

No Products

{!! $products->withQueryString()->links('pagination::bootstrap-5') !!}
@endsection