@extends('layouts.app') @section('title', 'Laporan Tahunan : ' . $year) @section('content')
| Bulan | Jumlah Transfer | Uang Masuk | Uang Keluar | Profit | Pilihan | @forelse($reports as $key => $report)
|---|---|---|---|---|---|
| {{ monthId($report->month) }} | {{ $report->count }} | {{ formatRp($report->cashin) }} | {{ formatRp($report->cashout) }} | {{ formatRp(($report->cashin - $report->cashout)) }} | {!! link_to_route('reports.payments.monthly','Lihat Bulanan', ['month' => monthNumber($report->month), 'year' => $year], ['class'=>'btn btn-info btn-xs','title'=>'Lihat laporan bulanan ' . monthId($report->month)]) !!} |
| {{ trans('payment.not_found') }} | |||||
| Jumlah | {{ $invoicesCount }} | {{ formatRp($sumTotal) }} | {{ formatRp($sumCapital) }} | {{ formatRp($sumProfit) }} | |