@extends('master') @section('content') @php $cards = [ [ 'route' => 'product', 'label' => __('sitelabel.Product'), 'icon' => 'bi-box', 'text_color' => 'text-indigo-600', 'bg_color' => 'bg-indigo-600', ], [ 'route' => 'purchaseorder', 'label' => __('sitelabel.PurchaseOrder'), 'icon' => 'bi-cart-plus', 'text_color' => 'text-green-600', 'bg_color' => 'bg-green-600', ], [ 'route' => 'grn', 'label' => __('sitelabel.GRN'), 'icon' => 'bi-truck', 'text_color' => 'text-blue-600', 'bg_color' => 'bg-blue-600', ], [ 'route' => 'storerequisition', 'label' => __('sitelabel.StoreRequisition'), 'icon' => 'bi-inbox', 'text_color' => 'text-yellow-600', 'bg_color' => 'bg-yellow-600', ], [ 'route' => 'storerequisitionissue', 'label' => __('sitelabel.StoreRequisitionIssue'), 'icon' => 'bi-inbox-fill', 'text_color' => 'text-orange-600', 'bg_color' => 'bg-orange-600', ], [ 'route' => 'factorysaleorder', 'label' => __('sitelabel.SaleOrder'), 'icon' => 'bi-cart-check', 'text_color' => 'text-teal-600', 'bg_color' => 'bg-teal-600', ], [ 'route' => 'outwardgatepass', 'label' => __('sitelabel.OutwardGatePass'), 'icon' => 'bi-arrow-right-square', 'text_color' => 'text-purple-600', 'bg_color' => 'bg-purple-600', ], [ 'route' => 'productledgerfilter', 'label' => __('sitelabel.ProductLedger'), 'icon' => 'bi-book', 'text_color' => 'text-emerald-600', 'bg_color' => 'bg-emerald-600', ], [ 'route' => 'posreport', 'label' => __('sitelabel.Reports'), 'icon' => 'bi-graph-up', 'text_color' => 'text-cyan-600', 'bg_color' => 'bg-cyan-600', ], [ 'route' => 'saleorder', 'label' => __('sitelabel.CustomerInvoice'), 'icon' => 'bi-receipt', 'text_color' => 'text-red-600', 'bg_color' => 'bg-red-600', ], [ 'route' => 'productionorder', 'label' => __('sitelabel.ProductionOrder'), 'icon' => 'bi-tools', 'text_color' => 'text-gray-600', 'bg_color' => 'bg-gray-600', ], ]; @endphp
@endsection @section('script') @endsection