@extends('layout') @section('content')
@if(session('success')) @endif
Route Customers - {{ $route->route_name }} Delivery Date : {{ request()->delivery_date }}
Product: {{ $product->product_name }}
@foreach ($customers as $key => $customer) @csrf @endforeach
Sl No Customer ID Customer Name Product Payment Status Quantity Action
{{ $key+1 }} {{ $customer->id }} {{ $customer->customer_name }} {{ $product->product_name }} {{ ($customer->payment_status==1)?'Paid':'Pending' }} payment_status == 1)?'readOnly':'' }} > @if($customer->payment_status == 0) @endif
@endsection @section('script') @endsection