@extends('backend.layouts.app')
@section('title', @$data['title'])
@section('content')
{!! breadcrumb([
'title' => @$data['title'],
route('admin.dashboard') => _trans('common.Dashboard'),
route('hrm.payroll_salary.index') => _trans('common.List'),
'#' => @$data['title'],
]) !!}
@include('backend.auth.backend_logo')
{{ @date('F', strtotime($data['salary']->date)).' '.@date('Y', strtotime($data['salary']->date)) }}
@if ($data['salary']->is_calculated==0)
{{ _trans('message.Please complete salary calculation to get the final salary.') }}
@endif
{{--
--}}
|
{{ _trans('common.Gross Salary') }} |
: |
{{ currency_format(@$data['salary']->employee->basic_salary) }} |
|
{{ _trans('common.Total Present') }} |
: |
{{ @$data['salary']->present }} |
|
{{ _trans('common.Total Late') }} |
: |
{{ @$data['salary']->late }} |
|
{{ _trans('common.Total Early Leave') }} |
: |
{{ @$data['salary']->left_early }}
|
|
{{ _trans('common.Date') }} |
: |
{{ main_date_format(@$data['salary']->date) }} |
{{ _trans('common.Total') }}
: {{ currency_format(@$data['salary']->absent_amount+$data['salary']->deduction_amount) }}
{{-- ==============================
DESCUENTOS DE LEY (ISSS, AFP, RENTA)
============================== --}}
@if($data['salary']->is_calculated && ($data['salary']->isss_amount > 0 || $data['salary']->afp_amount > 0 || $data['salary']->income_tax_amount > 0))
ISSS (3%)
{{ currency_format($data['salary']->isss_amount) }}
AFP (7.25%)
{{ currency_format($data['salary']->afp_amount) }}
{{ _trans('payroll.Renta') }} ({{ _trans('payroll.Tramo') }} {{ $data['salary']->income_tax_bracket }})
{{ currency_format($data['salary']->income_tax_amount) }}
{{ _trans('payroll.Total Descuentos de Ley') }}
{{ currency_format($data['salary']->isss_amount + $data['salary']->afp_amount + $data['salary']->income_tax_amount) }}
@endif
@endsection
@section('script')
@endsection