@extends('layouts.app') @section('content')
{{--
Add
--}}
@if (Session::get('Destroy'))
Deleted !
{{Session::get('Destroy')}}
@endif @if (Session::get('DestroyAll'))
Deleted !
{{Session::get('DestroyAll')}}
@endif

Invoice List

View Trash Delete All
{{-- @foreach ($invoices as $invoice) @endforeach --}}
Guest Tax PaymentMethod Date SubTotal TaxTotal Total Action
{{$invoice->Guest}} {{$invoice->Tax}} {{$invoice->PaymentMethod}} {{$invoice->Date}} {{$invoice->SubTotal}} {{$invoice->TaxTotal}} {{$invoice->Total}} {{ Form::open(array('url' => '/invoice/'.$invoice->id,'method' => 'DELETE')) }} {{ Form::close() }}
@endsection