@extends('layouts.admin') @section('page-title') {{ __('Employee Set Salary') }} @endsection @section('breadcrumb')
| {{ __('Employee Name') }} | {{ __('Allownace Option') }} | {{ __('Title') }} | {{ __('Type') }} | {{ __('Amount') }} | @if (\Auth::user()->type != 'Employee'){{ __('Action') }} | @endif|
|---|---|---|---|---|---|---|
| {{ $employee->name }} | {{ !empty($allowance->allowanceOption) ? $allowance->allowanceOption->name : '' }} | {{ $allowance->title }} | {{ ucfirst($allowance->type) }} | @if ($allowance->type == 'fixed'){{ \Auth::user()->priceFormat($allowance->amount) }} | @else{{ $allowance->amount }} {{ $allowance->tota_allow }} | @endif @if (\Auth::user()->type != 'Employee')@can('edit allowance') @endcan @can('delete allowance') @endcan | @endif
| {{ __('Employee Name') }} | {{ __('Title') }} | {{ __('Type') }} | {{ __('Amount') }} | @if (\Auth::user()->type != 'Employee'){{ __('Action') }} | @endif|
|---|---|---|---|---|---|
| {{ $employee->name }} | {{ $commission->title }} | {{ ucfirst($commission->type) }} | @if ($commission->type == 'fixed'){{ \Auth::user()->priceFormat($commission->amount) }} | @else{{ $commission->amount }} ({{ \Auth::user()->priceFormat($commission->tota_allow) }}) | @endif @if (\Auth::user()->type != 'Employee')@can('edit commission') @endcan @can('delete commission') @endcan | @endif
| {{ __('Employee') }} | {{ __('Loan Options') }} | {{ __('Title') }} | {{ __('Type') }} | {{ __('Loan Amount') }} | @if (\Auth::user()->type != 'Employee'){{ __('Action') }} | @endif|
|---|---|---|---|---|---|---|
| {{ $employee->name }} | {{ !empty($loan->loanOption) ? $loan->loanOption->name : '' }} | {{ $loan->title }} | {{ ucfirst($loan->type) }} | @if ($loan->type == 'fixed'){{ \Auth::user()->priceFormat($loan->amount) }} | @else{{ $loan->amount }} (${{ $loan->tota_allow }}) | @endif @if (\Auth::user()->type != 'Employee')@can('edit loan') @endcan @can('delete loan') @endcan | @endif
| {{ __('Employee Name') }} | {{ __('Deduction Option') }} | {{ __('Title') }} | {{ __('Type') }} | {{ __('Amount') }} | @if (\Auth::user()->type != 'Employee'){{ __('Action') }} | @endif|
|---|---|---|---|---|---|---|
| {{ $employee->name }} | {{ !empty($saturationdeduction->deductionOption) ? $saturationdeduction->deductionOption->name : '' }} | {{ $saturationdeduction->title }} | {{ ucfirst($saturationdeduction->type) }} | @if ($saturationdeduction->type == 'fixed'){{ \Auth::user()->priceFormat($saturationdeduction->amount) }} | @else{{ $saturationdeduction->amount }} {{ $saturationdeduction->tota_allow }} | @endif @if (\Auth::user()->type != 'Employee')@can('edit saturation deduction') @endcan @can('delete saturation deduction') @endcan | @endif
| {{ __('Employee') }} | {{ __('Title') }} | {{ __('Type') }} | {{ __('Amount') }} | @if (\Auth::user()->type != 'Employee'){{ __('Action') }} | @endif|
|---|---|---|---|---|---|
| {{ $employee->name }} | {{ $otherpayment->title }} | {{ ucfirst($otherpayment->type) }} | @if ($otherpayment->type == 'fixed'){{ \Auth::user()->priceFormat($otherpayment->amount) }} | @else{{ $otherpayment->amount }} (${{ $otherpayment->tota_allow }}) | @endif @if (\Auth::user()->type != 'Employee')@can('edit other payment') @endcan @can('delete other payment') @endcan | @endif
| {{ __('Employee Name') }} | {{ __('Overtime Title') }} | {{ __('Number of days') }} | {{ __('Hours') }} | {{ __('Rate') }} | @if (\Auth::user()->type != 'Employee'){{ __('Action') }} | @endif
|---|---|---|---|---|---|
| {{ $employee->name }} | {{ $overtime->title }} | {{ $overtime->number_of_days }} | {{ $overtime->hours }} | {{ \Auth::user()->priceFormat($overtime->rate) }} | @if (\Auth::user()->type != 'Employee')@can('edit overtime') @endcan @can('delete overtime') @endcan | @endif