@extends('layouts.admin_layout') @section('title',"Manage $order_status_title Orders") @section('content')

Manage {{$order_status_title}} Orders

@if(!empty($auth_write_status)) Create Order @endif Export All Orders
@php $invoice_order_status = [2, 3, 4, 8, 9, 12, 13, 14, 16]; @endphp @foreach($all_orders as $order_row) @endforeach
ID Order Created Date Order Status Payment Status Grand Total Action
{{strtotime($order_row->created_at)}}-{{$order_row->id}} {{date('dS F, Y', strtotime($order_row->created_at))}} {{$order_row->order_status}} {{$order_row->payment_status}} Rs. {{$order_row->grand_total}} @if(!empty($auth_write_status)) Edit @endif
@endsection