@extends('layouts.master') @section('css') @endsection @section('title') E-way Bill @endsection @section('content')
@if ($ewayBill && $ewayBill->ewayBillNo != null)
E-way bill of {{ $accountingVoucher->voucher_number }}
@include('admin.eway-bill.details') {{-- button for update e-way bill details, cancel, print, download, etc. --}} @if ($ewayBill->status != 0)

Notes

1. You Cannot Extend as EWB can be Extended only 8 hour before or after w.r.t Validity of EWB..!!.

@elseif ($ewayBill->status == 0 && $ewayBill->cancelledEwayBill->ewayBillNo == $ewayBill->ewayBillNo)

E-way Bill is Cancelled

Cancel Date: {{ $ewayBill->cancelledEwayBill->cancelDate }}

Cancel Reason Code: {{ $ewayBill->cancelledEwayBill->cancelRsnCode }}

Cancel Reason: {{ $ewayBill->cancelledEwayBill->cancelRmrk }}

@endif @foreach ($ewayBill->items as $item)
Item Details
SN Product Name HSN Code Quantity Unit Taxable Amount CGST SGST IGST CESS
{{ $loop->iteration }} {{ $item->productName }} {{ $item->hsnCode }} {{ $item->quantity }} {{ $item->qtyUnit }} {{ $item->taxableAmount }} {{ $item->cgstRate }} {{ $item->sgstRate }} {{ $item->igstRate }} {{ $item->cessRate }}
@endforeach @if (count($ewayBillVehicleUpdates) > 0)
Vehicle Updates
@foreach ($ewayBillVehicleUpdates as $ewayBillVehicleUpdate) @endforeach
SN Vehicle Number From Place From State Reason Code Reason Trans DocNo Trans Doc Date Trans Mode veh Upd Date valid Upto
{{ $loop->iteration }} {{ $ewayBillVehicleUpdate->vehicleNo }} {{ $ewayBillVehicleUpdate->fromPlace }} {{ $ewayBillVehicleUpdate->fromStateCode }} {{ $ewayBillVehicleUpdate->reasonCode }} {{ $ewayBillVehicleUpdate->reasonRem }} {{ $ewayBillVehicleUpdate->transDocNo }} {{ $ewayBillVehicleUpdate->transDocDate }} {{ $ewayBillVehicleUpdate->transMode }} {{ $ewayBillVehicleUpdate->vehUpdDate }} {{ $ewayBillVehicleUpdate->validUpto }}
@endif @if (count($ewayBillExtends) > 0)
Ewaybill extend Updates
@foreach ($ewayBillExtends as $ewayBillExtend) @endforeach
SN Vehicle Number From Place From State Reason Code Reason Trans DocNo Trans Doc Date Trans Mode veh Upd Date valid Upto
{{ $loop->iteration }} {{ $ewayBillVehicleUpdate->vehicleNo }} {{ $ewayBillVehicleUpdate->fromPlace }} {{ $ewayBillVehicleUpdate->fromStateCode }} {{ $ewayBillVehicleUpdate->reasonCode }} {{ $ewayBillVehicleUpdate->reasonRem }} {{ $ewayBillVehicleUpdate->transDocNo }} {{ $ewayBillVehicleUpdate->transDocDate }} {{ $ewayBillVehicleUpdate->transMode }} {{ $ewayBillVehicleUpdate->vehUpdDate }} {{ $ewayBillVehicleUpdate->validUpto }}
@endif @if (count($ewayBillCancel) > 0)
Ewaybill Cancel Updates
@foreach ($ewayBillCancel as $ewayBillCancels) @endforeach
SN eway Bill No cancel Date Reason Code Reason
{{ $loop->iteration }} {{ $ewayBillCancels->ewayBillNo }} {{ $ewayBillCancels->cancelDate }} {{ $ewayBillCancels->cancelRsnCode }} {{ $ewayBillCancels->cancelRmrk }}
@endif
@endif @if (($ewayBill && $ewayBill->ewayBillNo == null) || $ewayBill == null || $ewayBill->status == 0)
E-way bill of {{ $accountingVoucher->voucher_number }}
@csrf

Seller Details

Buyer Details

URP if Unregistered Person

Transaction Details

@if (($ewayBill && $ewayBill->ewayBillNo == null) || $ewayBill == null || $ewayBill->status == 0)
@endif
@endif