@extends('layouts.app') @section('content')
@if (!empty($upload_details) || !empty($credit_details))
{{ csrf_field() }}
Review & Payment

@foreach ($upload_details as $key => $item) @endforeach
  Service Editor Title Due Date Subtotal Discount Total
{{ $item['service']->service or 'N/A' }} {{ !empty(utility()->calculateDueDate($item['word_count'], $item['service'])) ? $item['editor'] : '' }} {{ !empty(utility()->calculateDueDate($item['word_count'], $item['service'])) ? $item['doc_name'] : '' }} {{ $item['due_date'] }} {{ money($item['subtotal']) }} {{ !empty($item['discount']) ? money($item['discount']) : '' }} {{ money($item['total_amt']) }}
Total {{ money($totalData['subtotal']) }} @if ($totalData['discount']) {{ money($totalData['discount']) }} @endif {{ money($totalData['total']) }}

Payment Type

Credit
@include('partials.checkout.actions_continue')

@else

No documents submitted

@endif
@stop