@extends('backEnd.master') @section('title') @lang('accounts.payroll_report') @endsection @section('mainContent') @push('css') @endpush @php @$setting = generalSetting(); if (!empty(@$setting->currency_symbol)) { @$currency = @$setting->currency_symbol; } else { @$currency = '$'; } @endphp

@lang('common.select_criteria')

{{ Form::open(['class' => 'form-horizontal', 'files' => true, 'route' => 'accounts-payroll-report-search', 'method' => 'POST', 'enctype' => 'multipart/form-data']) }}
{{ Form::close() }}
@if (isset($payroll_infos))

@lang('accounts.payroll_report')

@php $total=0; @endphp @foreach($payroll_infos as $payroll_info) @php $total= $total+ $payroll_info->amount @endphp @endforeach
@lang('common.name') @lang('accounts.expense_head') @lang('accounts.payment_method') @lang('accounts.amount')
{{@$payroll_info->description}} {{@$payroll_info->ACHead->head}} {{@$payroll_info->paymentMethod->method}} @if(@$payroll_info->payment_method_id==3) ({{@$payroll_info->account->bank_name}}) @endif {{currency_format(@$payroll_info->amount)}}
@lang('accounts.total') {{currency_format($total)}}
@endif
@endsection @include('backEnd.partials.data_table_js', ['i' => true]) @include('backEnd.partials.date_range_picker_css_js')