surya90 Ok I understand what you want 🙂

Go to resources/views/admin/dashboard.blade.php
Replace this
<div class="col-xl-6 d-none d-md-block">
    <div class="panel panel-flat">
        <div class="panel-body">
            @if($ifAnyOrders)
            <div class="chart-container has-scroll">
                <div class="chart has-fixed-height has-minimum-width" id="basic_donut"></div>
            </div>
            @endif
        </div>
    </div>
</div>
With this
<div class="col-xl-6 d-none d-md-block">
    <div class="panel panel-flat">
        <div class="panel-body">
            @if($ifAnyOrders)
            <div class="chart-container has-scroll">
                <div class="chart has-fixed-height has-minimum-width" id="basic_donut"></div>
            </div>
            @endif
        </div>
    </div>
    <h4 class="panel-title pl-1 mt-4"><strong>Awaiting Payment</strong></h4>
    <div class="mt-2" style="min-height: 30rem;">
        @foreach($orders as $order)
        @if ($order->orderstatus_id == 8)
        <div class="recent-order-card p-2">
            <a href="{{ route('admin.viewOrder', $order->unique_order_id) }}">
                <div class="float-right text-right">
                    <span class="badge order-badge badge-color-{{$order->orderstatus_id}} border-grey-800">
                        @if ($order->orderstatus_id == 8) Awaiting Payment @endif
                    </span>
                    <br>
                    @if($agent->isDesktop())
                    <p class="liveTimer mt-1 text-center min-fit-content order-dashboard-time" title="{{ $order->created_at }}"><i class="icon-spinner10 spinner position-right"></i></p>
                    @endif
                </div>
                <div class="d-flex justify-content-start">
                    <div>
                        <img src="{{substr(url("/"), 0, strrpos(url("/"), '/'))}}{{ $order->restaurant->image }}" alt="{{ $order->restaurant->name }}" height="70" width="70" style="border-radius: 8px;">
                    </div>
                    <div class="ml-2">
                        <span><b>{{ $order->restaurant->name }}</b></span>
                        <br>
                        <span>#{{ substr ($order->unique_order_id, -9)  }}</span>
                        <br>
                        <span><strong>{{ config('appSettings.currencyFormat') }}{{ $order->total }}</strong></span>
                    </div>
                </div>
                @if($agent->isMobile())
                <p class="liveTimer mt-1 text-center min-fit-content order-dashboard-time" title="{{ $order->created_at }}"><i class="icon-spinner10 spinner position-left"></i></p>
                @endif
            </a>
        </div>
        @endif
        @endforeach
    </div>
</div>