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