@extends('layouts.app') @section('content')
{{ __('Salary report') }}

{{ $start . ' to ' . $end }}

@foreach($reports as $report) @endforeach
{{ __('Name') }} {{ __('Role') }} {{ __('Salary period') }} {{ __('Created on') }} {{ __('Amount') }}
{{ $report->user->name }} {{ $report->user->roles->first()->name }} {{ $report->start . ' - ' . $report->end }} {{ date('Y-m-d', strtotime($report->created_at)) }} {{ auth()->user()->currency . $report->amount }}
{{ __('Total') }} {{ auth()->user()->currency . $reports->sum('amount') }}
@endsection