@extends('admin.adminmaster') @section('title') Admin-Orders @endsection @section('content') @section('heading') Orders @endsection
View Orders
@foreach ($orders as $order) @if ($order->status == 'pending') @elseif($order->status == 'processing') @elseif($order->status == 'completed') @elseif($order->status == 'rejected') @else @endif @endforeach
ID Price Name Phone Placed At Status Action
{{ $order['order_no'] }} {{ $order['total_price'] }} USD {{ $order['name'] }} {{ $order['phone'] }} {{ $order['created_at'] }} {{ $order['status'] }} order_no) }} class="editactionbtn">
@section('script') @endsection @endsection