@extends('layouts.app')
@section('title', 'Accounting Reports')
@include('inventory.accounting.partials.styles')
@section('content')
@include('inventory.accounting.partials.sub-nav')
@php
$reports = [
['Profit & Loss', 'inventory.accounting.reports.pnl', 'fa-chart-line', 'Revenue minus expenses for any date range.'],
['Balance Sheet', 'inventory.accounting.reports.balance', 'fa-scale-balanced', 'Assets, liabilities, and equity at a point in time.'],
['Trial Balance', 'inventory.accounting.reports.trial', 'fa-list-check', 'Every account\'s debit and credit totals.'],
['Cash Flow', 'inventory.accounting.reports.cashflow', 'fa-water', 'Where money came in and went out.'],
['Accounts Receivable', 'inventory.accounting.reports.ar', 'fa-hourglass-half', 'Who owes you, aged by days outstanding.'],
['Sales by Product', 'inventory.accounting.reports.sales', 'fa-boxes-stacked', 'Top sellers and their revenue share.'],
['Tax Summary', 'inventory.accounting.reports.tax', 'fa-file-invoice', 'Tax collected vs. remitted.'],
];
@endphp
@foreach($reports as $r)
{{ $r[0] }}
{{ $r[3] }}
@endforeach
@endsection