order number

This commit is contained in:
rahul shukla 2019-09-11 17:47:52 +05:30
parent aab8bd1479
commit d9a0c6078e
2 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@
</span>
<span class="value">
<a href="{{ route('admin.sales.orders.view', $order->increment_id) }}">#{{ $order->increment_id }}</a>
<a href="{{ route('admin.sales.orders.view', $order->id) }}">#{{ $order->increment_id }}</a>
</span>
</div>

View File

@ -17,7 +17,7 @@
<p style="font-size: 16px;color: #5E5E5E;line-height: 24px;">
{!! __('shop::app.mail.order.cancel.greeting', [
'order_id' => '<a href="' . route('customer.orders.view', $) . '" style="color: #0041FF; font-weight: bold;">#' . $order->increment_id . '</a>',
'order_id' => '<a href="' . route('customer.orders.view', $order->id) . '" style="color: #0041FF; font-weight: bold;">#' . $order->increment_id . '</a>',
'created_at' => $order->created_at
])
!!}