@php // Table headers $headers = ['Order ID', 'Qty', 'Shop', 'Date', 'Status', 'Action']; // Table data $rows = [ [ 'id' => '#RC000007', 'qty' => 1, 'shop' => 'Razin Shop', 'date' => '21 Nov, 2024', 'status' => ['text' => 'Pending', 'class' => 'text-yellow-600', 'bgClass' => 'bg-yellow-400'], 'actions' => [ ['url' => '#', 'icon' => 'https://demo.readyecommerce.app/assets/icons-admin/eye.svg', 'tooltip' => 'Order details'], ['url' => '#', 'icon' => 'https://demo.readyecommerce.app/assets/icons-admin/download-alt.svg', 'tooltip' => 'Download Invoice'], ], ], [ 'id' => '#RC000002', 'qty' => 1, 'shop' => 'Easy Life', 'date' => '14 Nov, 2024', 'status' => ['text' => 'On The Way', 'class' => 'text-blue-600', 'bgClass' => 'bg-blue-400'], 'actions' => [ ['url' => '#', 'icon' => 'https://demo.readyecommerce.app/assets/icons-admin/eye.svg', 'tooltip' => 'Order details'], ['url' => '#', 'icon' => 'https://demo.readyecommerce.app/assets/icons-admin/download-alt.svg', 'tooltip' => 'Download Invoice'], ], ], ]; @endphp