@extends('front.layouts.main') @section('content')

Wholesales Invoice List


@foreach($data as $key => $item) @endforeach
SN Date Time Customer Name Phone Number Total Amount View
{{$key + 1}} {{Carbon\Carbon::parse($item->created_at)->format('d/m/Y')}} {{Carbon\Carbon::parse($item->created_at)->format('g:i A')}} {{$item->customer->name ??'none'}} {{$item->customer->phone??'none'}} 0 Invoice Chalan
Total {{$alltotal+$totaldeliverycharge}}
@endsection