About accounting features
@php
$featureIcons = [
'Cash Book / Petty Cash Report' => 'ri-wallet-3-line',
'Item Stock Ledger Report' => 'ri-stack-line',
'Item Amount Ledger Report' => 'ri-money-rupee-circle-line',
'Profit & Loss Statement Report' => 'ri-line-chart-line',
'Inventory Book' => 'ri-book-2-line',
];
@endphp
@foreach(config('accounting.about_features', []) as $feature)
{{ $feature['title'] }}
{{ $feature['text'] }}
@endforeach
@include('partials.admin.module-hub.help', [
'title' => 'Getting started',
'items' => [
'Pick a report from the menu on the left.',
'Set your date range (or select an item for ledgers).',
'Click Apply to preview data, then Export Excel for your records.',
],
])