@php $statusCards = [ ['key' => 'total', 'label' => 'Total Orders', 'tone' => 'blue', 'icon' => 'box'], ['key' => 'processing', 'label' => 'Processing', 'tone' => 'amber', 'icon' => 'sync'], ['key' => 'failed', 'label' => 'Failed', 'tone' => 'red', 'icon' => 'times-circle'], ['key' => 'cancelled', 'label' => 'Cancelled', 'tone' => 'slate', 'icon' => 'ban'], ['key' => 'returned', 'label' => 'Returned', 'tone' => 'gray', 'icon' => 'undo'], ]; $amountCards = [ ['key' => 'total_cod', 'label' => 'COD Amount', 'tone' => 'green', 'icon' => 'money-bill-wave'], ['key' => 'courier_charge', 'label' => 'Courier Charge', 'tone' => 'rose', 'icon' => 'truck'], ['key' => 'net_amount', 'label' => 'Net Amount', 'tone' => 'indigo','icon' => 'wallet'], ]; @endphp