@extends('layouts.app') @section('content')
@csrf

{{$username}}

@if($errors->has('salary')) @endif
@if($errors->has('date_of_entry')) @endif
@if (!$salaries->isEmpty())

{{__('Salaries')}}

@foreach($salaries as $salary) @endforeach
{{__('Ammount')}} {{__('Date')}} {{__('Action')}}
{{number_format($salary->salary, 2, ',', '.')}} {{date('d.m.Y.', strtotime($salary->date_of_entry))}}
@endif @endsection