@extends('layouts.admin') @section('content')

User Sales History Invoice List

{{ $User->name }}

@foreach($InvoiceList as $Invoice) @endforeach
InvoiceID Shop Name SubTotal TaxTotal Total Paid Changes Date Action
{{ $Invoice->InvoiceID }} {{ $Invoice->ShopName }} {{ $Invoice->SubTotal }} {{ $Invoice->TaxTotal }} {{ $Invoice->Total }} {{ $Invoice->PaidMoney }} {{ $Invoice->ReturnedMoney }} {{ date('d/m/Y h:i A', strtotime($Invoice->created_at)) }}
@endsection