@extends('app-new') @push('content-header') @endpush @section('content')
@foreach($shippings as $index => $shipping) @endforeach
S.No. Customer Name Shipping Address Shipping State Shipping City Shipping Country Shipping Pincode Contact Name Contact Phone Action
{{ $index + 1 }} {{ $shipping->customer->display_name ?? '-' }} {{ $shipping->customer_ship_addr }} {{ $shipping->customer_ship_state }} {{ $shipping->customer_ship_city }} {{ $shipping->customer_ship_coun }} {{ $shipping->customer_ship_pincode }} {{ $shipping->contact_name ?? '-' }} {{ $shipping->contact_phone ?? '-' }} Edit
@csrf @method('DELETE')
@endsection