@extends('layouts.master-vnext')
@section('page-title')
Payroll for - {{ $vm->employee->first_name }} {{ $vm->employee->last_name }}
@endsection
@section('content')
@include('common.errors')
{{ Form::open(array('url' => action('Wages\PayrollController@processForm', [$vm->employee]))) }}
{{ Form::customText('days', $vm->days) }}
{{ Form::customText('salary', $vm->employee->salary, ['class' => 'form-control total1']) }}
{{ Form::customText('overtimeAmount', $vm->overtimeAmount, ['class' => 'form-control total1']) }}
{{ Form::customText('overtimeHours', $vm->overtimeHours) }}
{{ Form::customText('absentAmount', $vm->absentAmount, ['class' => 'form-control total1']) }}
{{ Form::customText('absentHours', $vm->absentHours) }}
{{ Form::customText('overtime30Amount', $vm->overtime30Amount, ['class' => 'form-control total1']) }}
{{ Form::customText('overtime30Hours', $vm->overtime30Hours) }}
{{ Form::customText('absentUnexcusedAmount', $vm->absentUnexcusedAmount, ['class' => 'form-control total1']) }}
{{ Form::customText('absentUnexcusedHours', $vm->absentUnexcusedHours) }}
{{ Form::customText('overtimeHolidayAmount', $vm->overtimeHolidayAmount, ['class' => 'form-control total1']) }}
{{ Form::customText('overtimeHolidayHours', $vm->overtimeHolidayHours) }}
{{ Form::customText('absentUndertimeAmount', $vm->absentUndertimeAmount, ['class' => 'form-control total1']) }}
{{ Form::customText('absentUndertimeHours', $vm->absentUndertimeHours) }}
{{ Form::customText('overtime100Amount', $vm->overtime100Amount, ['class' => 'form-control total1']) }}
{{ Form::customText('overtime100Hours', $vm->overtime100Hours) }}
{{ Form::customText('absentSuspendedAmount', $vm->absentSuspendedAmount, ['class' => 'form-control total1']) }}
{{ Form::customText('absentSuspendedHours', $vm->absentSuspendedHours) }}
{{ Form::customText('overtimeNightAmount', $vm->overtimeNightAmount, ['class' => 'form-control total1']) }}
{{ Form::customText('overtimeNightHours', $vm->overtimeNightHours) }}
{{ Form::customText('total1', $vm->total1, ['class' => 'form-control total1Sum total1']) }}
{{ Form::customText('sss', $vm->sss, ['class' => 'form-control total2']) }}
{{ Form::customText('sss_er', $vm->sss_er) }}
{{ Form::customText('philcare', $vm->philcare, ['class' => 'form-control total2']) }}
{{ Form::customText('philcare_er', $vm->philcare_er) }}
{{ Form::customText('pagibig', $vm->pagibig, ['class' => 'form-control total2']) }}
{{ Form::customText('pagibig_er', $vm->pagibig_er) }}
{{ Form::customText('total2', $vm->total2, ['class' => 'form-control total2Sum total3']) }}
{{ Form::customText('thirteenthMonth', $vm->thirteenthMonth, ['class' => 'form-control total3']) }}
{{ Form::customText('meals', $vm->meals, ['class' => 'form-control total3']) }}
{{ Form::customText('mealsPcs', $vm->mealsPcs) }}
{{ Form::customText('tax', $vm->tax, ['class' => 'form-control total3']) }}
{{ Form::customText('total3', $vm->total3, ['class' => 'form-control total3Sum total4']) }}
{{ Form::customText('sssLoan', $vm->sssLoan, ['class' => 'form-control total4']) }}
{{ Form::customText('pagibigLoan', $vm->pagibigLoan, ['class' => 'form-control total4']) }}
{{ Form::customText('advancedCash', $vm->advancedCash, ['class' => 'form-control total4']) }}
{{ Form::customText('bonus', $vm->bonus, ['class' => 'form-control total4']) }}
{{ Form::customText('netAmount', $vm->netAmount, ['class' => 'form-control total4Sum']) }}
{{ Form::customSubmit('Payed') }}
{{ Form::close() }}
@endsection
@section('js')
@endsection