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 @@ - - - +
+ ScholarSpace Logo +
diff --git a/resources/views/orders/view.blade.php b/resources/views/orders/view.blade.php index 041d56e..7028dc2 100644 --- a/resources/views/orders/view.blade.php +++ b/resources/views/orders/view.blade.php @@ -13,30 +13,32 @@

Order Details

-
- -

Order Information

-
-
-
- - Title: {{ $order->title }} -
-
- - Description: {{ $order->description }} -
-
- - Status: - {{ ucfirst($order->status) }} -
-
- - Total Price: ${{ number_format($order->total_price, 2) }} -
-
-
+
+ +

Order Information

+
+
+
+ + 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 @@
+ rounded-xl ring-1 ring-blue-100 ring-opacity-40 cursor-pointer overflow-hidden relative" + data-type="{{ $attachment->type }}" + data-path="{{ Storage::url($attachment->path) }}"> @if (in_array($attachment->type, ['image/jpeg', 'image/png', 'image/gif'])) - Amount Paid: ${{ number_format($order->payment->amount, 2) }} + Amount Paid: + ${{ number_format($order->payment->amount, 2) }}
- 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())
+ @else