diff --git a/resources/views/components/application-logo.blade.php b/resources/views/components/application-logo.blade.php
index c225ab3..6fb5437 100644
--- a/resources/views/components/application-logo.blade.php
+++ b/resources/views/components/application-logo.blade.php
@@ -1,3 +1,3 @@
-
+
-
-
-
Order Information
-
-
-
-
- Title: {{ $order->title }}
-
-
-
- Description: {{ $order->description }}
-
-
-
- Status:
- {{ ucfirst($order->status) }}
-
-
-
- Total Price: ${{ number_format($order->total_price, 2) }}
-
-
-
+
+
+
+ Title: {{ $order->title }}
+
+
+
+ Description: {{ $order->description }}
+
+
+
+ Status:
+ {{ ucfirst($order->status) }}
+
+
+
+ Total Price:
+ ${{ number_format($order->total_price, 2) }}
+
+
+
Attachments
@if ($order->attachments->isNotEmpty())
@@ -47,7 +49,9 @@
- Payment Method: {{ ucfirst($order->payment->payment_method) }}
+ Payment Method: {{ ucfirst($order->payment->payment_method) }}
Payment Status:
- {{ ucfirst($order->payment->status) }}
+ {{ ucfirst($order->payment->status) }}
@else
@@ -128,7 +135,8 @@ class="absolute top-0 btn btn-xs btn-circle btn-ghost bg-blue-500 right-0 mt-1 m
@if ($order->delivery->isNotEmpty())
@foreach ($order->delivery as $delivery)
- {{ Str::ucfirst($delivery->status) }}
+ {{ Str::ucfirst($delivery->status) }}
{{ Str::limit($delivery->description, 100)}}
@@ -140,53 +148,55 @@ class="absolute top-0 btn btn-xs btn-circle btn-ghost bg-blue-500 right-0 mt-1 m
@else