@extends('layouts.master') @section('title') @lang('Edit Invoice') @endsection @section('css') @endsection @section('content') @component('components.breadcrumb') @slot('li_1') @lang('Invoice') @endslot @slot('title') Edit @endslot @endcomponent @include('partials.session')
@csrf
@lang('Inoice To')
@lang('Recipient Email')
@lang('Address')
@lang('Select Currency')

@foreach ($invoice->items as $value)
@if ($loop->first)
@lang('Item name')
@endif
@if ($loop->first)
@lang('Amount')
@endif
@if ($loop->first)
 
@else
@endif
@endforeach

@lang('Total Amount :')
{{numFormat($invoice->final_amount)}} {{$invoice->currency->code}}
 
@endsection @push('script') @endpush