@extends('master') @section('content')
@php $sections = [ [ 'route' => 'customerpayment', 'label' => __('sitelabel.CustomerPayment'), 'icon' => 'bi-credit-card', // Unique icon 'text_color' => 'text-warning', // Unique text color 'bg_color' => 'bg-warning bg-opacity-10', // Unique background color ], [ 'route' => 'vendorpayment', 'label' => __('sitelabel.VendorPayment'), 'icon' => 'bi-cash', // Changed icon 'text_color' => 'text-danger', // Unique text color 'bg_color' => 'bg-danger bg-opacity-10', // Unique background color ], [ 'route' => 'employeeadvance', 'label' => __('sitelabel.EmployeeAdvance'), 'icon' => 'bi-wallet2', // Changed icon 'text_color' => 'text-success', // Unique text color 'bg_color' => 'bg-success bg-opacity-10', // Unique background color ], [ 'route' => 'employeepayment', 'label' => __('sitelabel.EmployeePayment'), 'icon' => 'bi-person-badge', // Changed icon 'text_color' => 'text-primary', // Unique text color 'bg_color' => 'bg-primary bg-opacity-10', // Unique background color ], [ 'route' => 'employeeweeklypayment', 'label' => __('sitelabel.EmployeeWeeklySalary'), 'icon' => 'bi-calendar-week', // Changed icon 'text_color' => 'text-secondary', // Unique text color 'bg_color' => 'bg-secondary bg-opacity-10', // Unique background color ], [ 'route' => 'dailystoreexpense', 'label' => __('sitelabel.DailyStoreExpense'), 'icon' => 'bi-cart4', // Changed icon 'text_color' => 'text-info', // Unique text color 'bg_color' => 'bg-info bg-opacity-10', // Unique background color ], [ 'route' => 'journalvoucher', 'label' => __('sitelabel.JournalVoucher'), 'icon' => 'bi-book', // Changed icon 'text_color' => 'text-muted', // Unique text color 'bg_color' => 'bg-light bg-opacity-10', // Unique background color ], [ 'route' => 'cashpayment', 'label' => __('sitelabel.CashPaymentVoucher'), 'icon' => 'bi-cash-coin', // Changed icon 'text_color' => 'text-warning', // Unique text color 'bg_color' => 'bg-warning bg-opacity-10', // Unique background color ], [ 'route' => 'cashreceipt', 'label' => __('sitelabel.CashReceiptVoucher'), 'icon' => 'bi-receipt', // Changed icon 'text_color' => 'text-success', // Unique text color 'bg_color' => 'bg-success bg-opacity-10', // Unique background color ], [ 'route' => 'bankpayment', 'label' => __('sitelabel.BankPaymentVoucher'), 'icon' => 'bi-bank', // Changed icon 'text_color' => 'text-info', // Unique text color 'bg_color' => 'bg-info bg-opacity-10', // Unique background color ], [ 'route' => 'bankreceipt', 'label' => __('sitelabel.BankReceiptVoucher'), 'icon' => 'bi-building', // Changed icon 'text_color' => 'text-primary', // Unique text color 'bg_color' => 'bg-primary bg-opacity-10', // Unique background color ], ]; @endphp
@foreach ($sections as $section) @endforeach
{{--
--}}
@endsection @section('script') @endsection