@extends('seller.profile') @section('content') {{-- password change --}}
Accepted Offers
@error('tracking_link')

{{$message}}

@enderror
@foreach ($offers as $offer) @endforeach @if ($offers->count() == 0) @endif
Order No. Product Image Product Price Quantity Total Price Action
{{$loop->iteration}} {{$offer->title}} ${{$offer->price}} {{$offer->quantity}} ${{$offer->price*$offer->quantity}}
@csrf
@csrf

No Offer Accepted

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