@extends('layouts.master') @push('page-styles') @endpush @section('content')
@csrf @method("PUT")
@foreach ($projects as $project) @endforeach
@foreach ($clients as $client) @endforeach
@foreach ($taxes as $tax) @endforeach
@if (!empty($invoice->items)) @foreach ($invoice->items as $item) @endforeach @else @endif
# Item Description Unit Cost Qty Amount
Total {{count($invoice->items)}}
Tax
Grand Total {{app(App\Settings\ThemeSettings::class)->currency_symbol.' '.($invoice->total)}}
@endsection @push('page-scripts') @endpush