@extends('accounts.nav') @section('head') @parent @stop @section('content') @parent @include('accounts.nav_advanced') {!! Button::primary(trans('texts.data_visualizations')) ->asLinkTo('/company/advanced_settings/data_visualizations') ->withAttributes(['class' => 'pull-right']) ->appendIcon(Icon::create('globe')) !!}
{!! Former::checkbox('enable_report')->text(trans('texts.enable')) !!} {!! Former::select('report_type')->options($reportTypes, $reportType)->label(trans('texts.group_by')) !!}
{!! Former::checkbox('enable_chart')->text(trans('texts.enable')) !!} {!! Former::select('group_by')->options($dateTypes, $groupBy) !!} {!! Former::select('chart_type')->options($chartTypes, $chartType) !!}
@if (Auth::user()->isPro()) {!! Former::actions( Button::primary(trans('texts.export'))->withAttributes(array('onclick' => 'onExportClick()'))->appendIcon(Icon::create('export')), Button::success(trans('texts.run'))->withAttributes(array('id' => 'submitButton'))->submit()->appendIcon(Icon::create('play')) ) !!} @else @endif {!! Former::close() !!}
{{ trans("texts.{$column}") }} | @endforeach|||||
---|---|---|---|---|---|
{!! $field !!} | @endforeach|||||
{{ trans('texts.totals') }} | @if (!$reportType)@endif |
@foreach ($reportTotals['amount'] as $currencyId => $total)
{{ Utils::formatMoney($total, $currencyId) }} @endforeach |
@foreach ($reportTotals['paid'] as $currencyId => $total)
{{ Utils::formatMoney($total, $currencyId) }} @endforeach |
@foreach ($reportTotals['balance'] as $currencyId => $total)
{{ Utils::formatMoney($total, $currencyId) }} @endforeach |