Samson Mutunga 7 сар өмнө
parent
commit
cb78b3f906

+ 1 - 1
config/constants.php

@@ -15,7 +15,7 @@ return [
       'phoneIcon' => 'https://primarywellness.com/img/lbs/phone.png',
       'emailIcon' => 'https://primarywellness.com/img/lbs/email.png',
       'primaryColor' => '#24315E',
-      'productUrl' => config('app.url')
+      'productUrl' => config('app.orderAppUrl')
     ],
 
     'tests' => [

+ 2 - 2
resources/views/app/my-account/admin/orders/partials/lab-requests.blade.php

@@ -15,10 +15,10 @@
         <span class="text-muted mx-1">|</span>
         <div>
             @include('app.my-account.admin.orders.forms.email-attachment', [
-                'title' => 'Email Lab Request PDF',
+                'title' => 'Email Lab Request PDF for Order #' . $order->iid,
                 'toEmail' => $order->user->getEmail(),
                 'toName' => $order->user->displayName(),
-                'subject' => 'Lab Request PDF',
+                'subject' => 'Lab Request PDF for Order #' . $order->iid,
                 'attachmentUrl' => $lab_tests_request_attachment['attachmentAccessTokenUrl'] . '?fileType=lab_tests_request_attachment',
                 'attachmentName' => $lab_tests_request_attachment['orginalFileName'],
                 'attachmentPath' => $lab_tests_request_attachment['path']

+ 2 - 2
resources/views/app/my-account/admin/orders/sub/dashboard.blade.php

@@ -122,10 +122,10 @@
                                 <span class="text-muted mx-1">|</span>
                                 <div>
                                     @include('app.my-account.admin.orders.forms.email-attachment', [
-                                        'title' => 'Email Lab Request PDF',
+                                        'title' => 'Email Lab Request PDF for Order #' . $order->iid,
                                         'toEmail' => $order->getPartnerEmail(),
                                         'toName' => '',
-                                        'subject' => 'Lab Request PDF',
+                                        'subject' => 'Lab Request PDF for Order #' . $order->iid,
                                         'attachmentUrl' => $lab_tests_request_attachment['attachmentAccessTokenUrl'] . '?fileType=lab_tests_request_attachment',
                                         'attachmentName' => $lab_tests_request_attachment['orginalFileName'],
                                         'attachmentPath' => $lab_tests_request_attachment['path']