@extends('layouts.app') @section('content')
{{--
Back To list
--}}
@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

Invoice Trash List

Empty Trash Restore All
@foreach ($Invoices as $Invoice) @endforeach
Id GuestID TaxID PaymentMethod SubTotal TaxTotal Total Action
{{ $Invoice->id }} {{ $Invoice->GuestID }} {{ $Invoice->TaxID }} {{ $Invoice->PaymentMethod }} {{ $Invoice->SubTotal }} {{ $Invoice->TaxTotal }} {{ $Invoice->Total }} {{-- Restore --}}
Empty Trash Restore All
@foreach ($invoices as $invoice) @endforeach
Id GuestID TaxID PaymentMethod SubTotal TaxTotal Total Action
{{ $invoice->id }} {{ $invoice->GuestID }} {{ $invoice->TaxID }} {{ $invoice->PaymentMethod }} {{ $invoice->SubTotal }} {{ $invoice->TaxTotal }} {{ $invoice->Total }} {{-- Restore --}}
@endsection