@extends('layouts.app') @section('title', 'Laporan Bulanan : ' . $months[$month] . ' ' . $year) @section('content')

Laporan Bulanan : {{ $months[$month] }} {{ $year }}

{!! Form::open(['method'=>'get','class'=>'form-inline well well-sm']) !!} {!! Form::select('month', $months, $month, ['class'=>'form-control']) !!} {!! Form::select('year', $years, $year, ['class'=>'form-control']) !!} {!! Form::submit('Lihat Laporan', ['class'=>'btn btn-info']) !!} {!! link_to_route('reports.payments.monthly','Bulan ini',[],['class'=>'btn btn-default']) !!} {!! link_to_route('reports.payments.yearly','Lihat Tahunan',['year' => $year],['class'=>'btn btn-default']) !!} {!! Form::close() !!}

Grafik Profit {{ $months[$month] }} {{ $year }}

Rp.
Tanggal

Detail Laporan

@forelse($reports as $key => $report) count; $sumTotal += $report->cashin; $sumCapital += $report->cashout; $sumProfit += ($report->cashin - $report->cashout); $cartData[] = ['date'=>dateId($report->date),'value'=>($report->cashin - $report->cashout)]; ?> @empty @endforelse
Tanggal Jumlah Transfer Uang Masuk Uang Keluar Profit Pilihan
{{ dateId($report->date) }} {{ $report->count }} {{ formatRp($report->cashin) }} {{ formatRp($report->cashout) }} {{ formatRp(($report->cashin - $report->cashout)) }} {!! link_to_route('reports.payments.daily','Lihat Harian',['date' => $report->date] , ['class'=>'btn btn-info btn-xs','title'=>'Lihat laporan harian ' . $report->date]) !!}
{{ trans('payment.not_found') }}
Jumlah {{ $invoicesCount }} {{ formatRp($sumTotal) }} {{ formatRp($sumCapital) }} {{ formatRp($sumProfit) }}
@endsection @section('ext_css') {!! Html::style(url('assets/css/plugins/morris.css')) !!} @endsection @section('ext_js') {!! Html::script(url('assets/js/plugins/morris/raphael.min.js')) !!} {!! Html::script(url('assets/js/plugins/morris/morris.min.js')) !!} @endsection @section('script') @endsection