@extends('layouts.default') @section('title', trans_choice('general.debitmemo', 2)) @section('new_button') view_list{{trans_choice('general.debitmemo', 1) .' List' }} {{-- editEdit --}} add{{trans_choice('general.debitmemo', 2)}} @endsection @section('content')
Vendor : {{ $debitmemo->vendor_name }}
Email : {{ $debitmemo->vendor_email}}
Address : {{ $debitmemo->vendor_address}}
Debit Memo : {{ Date::parse($debitmemo->debitmemo_at)->format($date_format) }}
@foreach($debitmemo->items as $item) @endforeach
Account Description Price Total
{{ $item->chartofaccount->name }} @money($item->price,'USD',true)
Total @money($debitmemo->total,'USD',true)
@endsection