@extends('layouts.master') @section('title') @lang('Invoice') @endsection @section('breadcrumb') @lang('Invoice : '.$invoice->number) @endsection @push('extra') @lang(' Back') @endpush @section('content')

@lang('From')

{{@$contact->content->address}}
{{@$contact->content->email}}
{{@$contact->content->phone}}

@lang('To')

{{$invoice->address}}
{{$invoice->email}}

@lang('Invoice : ') {{$invoice->number}}

@foreach ($invoice->items as $k => $value) @endforeach
@lang('SL') @lang('Item') @lang('Amount')
{{++$k}}

{{ $value->name}}

{{$invoice->currency->symbol}}{{ numFormat($value->amount) }}
@lang('Total : '.$invoice->currency->symbol.numFormat($invoice->final_amount))

@lang('Thank you very much for doing business with us. We look forward to working with you again!')
@lang('All right reserved ') {{$gs->title}}

@endsection