@extends("portal.template.layout") @section('header') @stop @section('content')

{{ $page_heading }}

Clear
@forelse($list as $i=>$item) @empty @endforelse
# Order No Customer Product Comment Status Request Date Action
{{ $i + $list->firstItem() }} {{ $item->order_no }} {{ $item->customer_name }} {{ $item->product_name ?? '-' }} {{ $item->comment ?? '-' }}
@csrf @method('PUT')
{{ $item->created_at }} Order
No replacement requests found
{!! $list->links('admin.template.pagination') !!}
@stop @section('script') @stop