@extends('layouts.app') @section('content')
| # | Consg. No. | Cust. Id | Org. Pincode | Dest. Pincode | Subscription | B Type | B Date | Status | Emp Code | Operations |
|---|---|---|---|---|---|---|---|---|---|---|
| {{ $index++ }} | {{ $booking->consg_number }} | {{ $booking->customer->code ?? '' }} | {{ $booking->pincode->pincode ?? '' }} | {{ $booking->delivery->dest_pincode ?? '' }} | {{ $booking->subs_name ?? '' }} | {{ $booking->batch_id ? 'Bulk': 'Single' }} | {{ date('d-m-Y H:i', strtotime($booking->created_at)) }} | {{ $booking->status }} | @if(isset($booking->user->username)) {{ $booking->user->username }} @endif |