@extends('layouts.app') @section('title', 'Shippers api request') @section('content')

Shippers

ReSend Request

{{-- Alert Messages --}} @include('common.alert')
All Shippers
@foreach ($shippingcost as $shrow) @endforeach
ID ShipperID Shipper Sent_Date Received_Date OrderNumber Customer Details Status Action
{{ $shrow->id }} {{ $shrow->shipperid }} {{ $shrow->shipper }} {{ $shrow->sent_date }} {{ $shrow->received_date }} {{ $shrow->order_number}} {{ $shrow->customer }} {{ $shrow->description }} @if ($shrow->status == 0) Pending @elseif ($shrow->status == 1) Received @elseif ($shrow->status == 2) Completed @endif
@endsection @section('scripts') @endsection