@extends('layouts.app') @section('content')
{{ __('Staff salary betwee: ' . $start . ' - ' . $end) }}

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