REPORT SALES
{{$profile['name']}}
{{$date}}
Print Date:
{{$now}}
No
Date
Invoice
Sub Total
@foreach($transaction as $index => $row)
{{ $index + 1 }}
{{ date('d/m/Y', strtotime($row->created_at)) }}
{{ $row->invoice }}
{{ number_format($row->total_price, 0, ',', '.') }}
@endforeach @if(count($transaction) == 0)
Data tidak tersedia
@endif
TOTAL
Rp {{ number_format($total, 0, ',', '.') }}