@if (Session::get('PermanentlyDelete'))
Deleted !
{{Session::get('PermanentlyDelete')}}
@endif
@if (Session::get('EmptyTrash'))
Deleted !
{{Session::get('EmptyTrash')}}
@endif
@if (Session::get('Restore'))
Success !
{{Session::get('Restore')}}
@endif
@if (Session::get('RestoreAll'))
Success !
{{Session::get('RestoreAll')}}
@endif
| Id |
GuestID |
TaxID |
PaymentMethod |
SubTotal |
TaxTotal |
Total |
Action |
@foreach ($Invoices as $Invoice)
| {{ $Invoice->id }} |
{{ $Invoice->GuestID }} |
{{ $Invoice->TaxID }} |
{{ $Invoice->PaymentMethod }} |
{{ $Invoice->SubTotal }} |
{{ $Invoice->TaxTotal }} |
{{ $Invoice->Total }} |
{{-- Restore --}}
|
@endforeach
Empty Trash
Restore All
| Id |
GuestID |
TaxID |
PaymentMethod |
SubTotal |
TaxTotal |
Total |
Action |
@foreach ($invoices as $invoice)
| {{ $invoice->id }} |
{{ $invoice->GuestID }} |
{{ $invoice->TaxID }} |
{{ $invoice->PaymentMethod }} |
{{ $invoice->SubTotal }} |
{{ $invoice->TaxTotal }} |
{{ $invoice->Total }} |
{{-- Restore --}}
|
@endforeach