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

{{ __('Generate salary for all active staff') }}

{{ __('Pay period: ' . $start . ' - ' . $end) }}


@csrf
@foreach($users as $user) @endforeach
{{ __('Select') }} {{ __('Name') }} {{ __('Role') }} {{ __('Salary') }} {{ __('Amount') }}
{{ $user->name }} {{ $user->roles->first()->name }} {{ auth()->user()->currency . $user->profile->salary }}
@endsection