{{-- Author : Gurupriya Solanki Update Date:6 May 2025 Description: Added Street Address 2 field and store. its not mandatory. And Show here if user has. --}} @extends('layouts.backend') @section('title', '| User') @section('css') @endsection @section('content')
| Order ID | Form Name | Amount Paid | Date | Document Uploaded | Action |
|---|---|---|---|---|---|
| {{ $order->reference_id }} | {{ $order->form_name }} | {{ config('app.currency_symbol')}}{{ $order->amount_paid }} | {{ date('m/d/Y h:i A', strtotime($order->created_at )) }} (EST) | @if(!empty($order->original_document_pdf_path)){{ date('m/d/Y', strtotime($order->updated_at )) }} @endif | @if($order->form_edit_count == $order->edit_attempt_count) @if(!empty($order->original_document_pdf_path)) Update @elseif(($order->show_upload_button && $order->form_edit_count == 0) || $order->form_edit_count > 0) {{-- #Author : Gurupriya Solanki #Description : Upload Button should not be show for first 24 hours free edit after intial payment for order. #Updated Date : 16 Sep 2024 --}} Upload @endif @include('backend.users.modals.uploads') @endif |