@extends('seller.profile') @section('content') {{-- password change --}}
Orders
@foreach ($orders as $order) @csrf @endforeach @if ($orders->count() == 0) @endif
Order No. Product Image Product Price Quantity Total Price Action
{{$loop->iteration}} {{$order->title}} ${{$order->price}} {{$order->quantity}} ${{$order->price*$order->quantity}}
@error('tracking_link')

{{$message}}

@enderror {{-- --}}

No Orders

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