@extends('admin.master') @section('title') Order List @endsection @section('sideMenuTitle') Order @endsection @section('bodyContent')
@if(Session::has('message'))

{{Session::get('message')}}

@endif @if ($errors->any())
@endif

Now showing {{ $orders->count() * $orders->currentPage() }} out of {{ $orders->total() }} Order

@foreach($orders as $val) @endforeach
ID Order No # Payment Type Payment Status Grand Total({{ $settings ? $settings->currency_symbol ?? "Currency" : "Currency" }}) Update Order Status Action
{{ $i++ }} {{$val->order_number}} {{$val->payment->type ?? $val->payment_type }} {{$status}} {{$val->grandtotal}} Pending Delivered Reject Details
{{ $orders->links() }}
@endsection