@if ($message = Session::get('success'))
{{ $message }}
@endif
@if (count($errors) > 0)
Whoops! There were some problems with your input.
@foreach ($request->session()->errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@if (isset($data['usage']))
usage time : {{ $data['usage']??'' }} |
@endif
@if (isset($data['error']))
@if (count($data['error']) > 0)
ERROR |
row |
customer |
Data |
@foreach ($data['error'] as $record)
{{ $record['rows'] }} |
({{ $record['customer_no']?? '-'}}) {{ $record['customer_name']??'-' }} |
{{ $record['error']?? json_encode($record) }} |
@endforeach
@endif
@endif
@if (isset($data['success']))
@if (count($data['success']) > 0)
Success
bill no |
customer |
grand amount |
@foreach ($data['success'] as $record)
{{ $record['bill_no'] }} |
({{ $record['customer_no']??'-'}}) {{$record['customer_name']??'-' }} |
{{ $record['product_grand']}} |
@endforeach
@endif
@endif
@if (isset($data['records']))
@if (count($data['records']) > 0)
Upload Error |
row |
customer |
Data |
@foreach ($data['records'] as $record)
{{ $record['row'] }} |
{{ json_encode($record['data'])??'' }} |
@endforeach
@endif
@endif
@if (isset($data['copy']))
@endif
@if (isset($data['confirm']['lstPaid'][0]))
Payment Confirm |
@if (isset($data['confirm']['lstPaid']))
invoice no | sales email | amount |
@forelse ($data['confirm']['lstPaid'] as $record)
{{ $record['invoice_no'] }} |
{{ $record['sales_email'] }} |
{{ number_format($record['amount'],2) }} |
@empty
No Payment Confirm
{{}}
|
@endforelse
@endif
@endif