@extends('layouts.master-vnext') @section('page-title') Salary reports @endsection @section('content')

Salaries by month

@foreach($model->items as $payday) @endforeach
Date Gross amount Tax Social services employee Salary net Social services employer Total payed
$payday->wage_date->format('Y-m-d')]) }}"> @date($payday->wage_date, 'M Y') @currency($payday->salary) @currency($payday->tax) @currency($payday->social_services_ee) @currency($payday->salary_payed) @currency($payday->social_services_er) @currency($payday->totalPayed())
Totals @currency($model->salary()) @currency($model->tax()) @currency($model->socialServicesEmployee()) @currency($model->salaryPayed()) @currency($model->socialServicesEmployer()) @currency($model->totalPayed())
@endsection @section('js') @endsection