{{__('Employee Salary Pay Slip')}}
{{__('Employee Salary Pay Slip')}}
{{ Form::model($employee, array('route' => array('employee.update', $employee->id), 'method' => 'PUT' , 'enctype' => 'multipart/form-data')) }}
{{Form::close()}}
{{ Form::label('salary_type', __('Payslip Type*')) }}
{{ Form::select('salary_type',$payslip_type,null, array('class' => 'form-control ','required'=>'required')) }}
{{ Form::label('salary', __('Salary')) }}
{{ Form::number('salary',null, array('class' => 'form-control ','required'=>'required')) }}
{{ Form::button(' '.__('Save Change'), ['type' => 'submit','class' => 'btn btn-primary']) }}
{{Form::open(array('url'=>'allowance','method'=>'post'))}}
@csrf
{{ Form::hidden('employee_id',$employee->id, array()) }}
{{Form::close()}}
{{ Form::label('allowance_option', __('Allowance Options*')) }}
{{ Form::select('allowance_option',$allowance_options,null, array('class' => 'form-control ','required'=>'required')) }}
{{ Form::label('title', __('Title')) }}
{{ Form::text('title',null, array('class' => 'form-control ','required'=>'required')) }}
{{ Form::label('amount', __('Amount')) }}
{{ Form::number('amount',null, array('class' => 'form-control ','required'=>'required')) }}
{{ Form::button(' '.__('Save Change'), ['type' => 'submit','class' => 'btn btn-primary']) }}
{{__('Employee Name')}} | {{__('Allownace Option')}} | {{__('Title')}} | {{__('Amount')}} | {{__('Action')}} |
---|---|---|---|---|
{{ $allowance->employee()->name }} | {{ $allowance->allowance_option()->name }} | {{ $allowance->title }} | {{ $allowance->amount }} | @can('edit allowance') {{__('Edit')}} @endcan @can('delete allowance') {{__('Delete')}} {!! Form::open(['method' => 'DELETE', 'route' => ['allowance.destroy', $allowance->id],'id'=>'delete-form-'.$allowance->id]) !!} {!! Form::close() !!} @endcan |
{{Form::open(array('url'=>'commission','method'=>'post'))}}
@csrf
{{ Form::hidden('employee_id',$employee->id, array()) }}
{{Form::close()}}
{{ Form::label('title', __('Title')) }}
{{ Form::text('title',null, array('class' => 'form-control ','required'=>'required')) }}
{{ Form::label('amount', __('Amount')) }}
{{ Form::number('amount',null, array('class' => 'form-control ','required'=>'required')) }}
{{ Form::button(' '.__('Save Change'), ['type' => 'submit','class' => 'btn btn-primary']) }}
{{__('Employee Name')}} | {{__('Title')}} | {{__('Amount')}} | {{__('Action')}} |
---|---|---|---|
{{ $commission->employee()->name }} | {{ $commission->title }} | {{ $commission->amount }} | @can('edit allowance') {{__('Edit')}} @endcan @can('delete allowance') {{__('Delete')}} {!! Form::open(['method' => 'DELETE', 'route' => ['commission.destroy', $commission->id],'id'=>'delete-form-'.$commission->id]) !!} {!! Form::close() !!} @endcan |
{{Form::open(array('url'=>'loan','method'=>'post'))}}
@csrf
{{ Form::hidden('employee_id',$employee->id, array()) }}
{{Form::close()}}
{{ Form::label('loan_option', __('Loan Options*')) }}
{{ Form::select('loan_option',$loan_options,null, array('class' => 'form-control ','required'=>'required')) }}
{{ Form::label('title', __('Title')) }}
{{ Form::text('title',null, array('class' => 'form-control ','required'=>'required')) }}
{{ Form::label('amount', __('Loan Amount')) }}
{{ Form::number('amount',null, array('class' => 'form-control ','required'=>'required')) }}
{{ Form::label('start_date', __('Start Date')) }}
{{ Form::text('start_date',null, array('class' => 'form-control datepicker','required'=>'required')) }}
{{ Form::label('end_date', __('End Date')) }}
{{ Form::text('end_date',null, array('class' => 'form-control datepicker','required'=>'required')) }}
{{ Form::label('reason', __('Reason')) }}
{{ Form::textarea('reason',null, array('class' => 'form-control ','required'=>'required')) }}
{{ Form::button(' '.__('Save Change'), ['type' => 'submit','class' => 'btn btn-primary']) }}
{{__('employee')}} | {{__('Loan Options')}} | {{__('Title')}} | {{__('Loan Amount')}} | {{__('Start Date')}} | {{__('End Date')}} | {{__('Action')}} |
---|---|---|---|---|---|---|
{{ $loan->employee()->name }} | {{ $loan->loan_option()->name }} | {{ $loan->title }} | {{ $loan->amount }} | {{ $loan->start_date }} | {{ $loan->end_date }} | @can('edit loan') {{__('Edit')}} @endcan @can('delete loan') {{__('Delete')}} {!! Form::open(['method' => 'DELETE', 'route' => ['loan.destroy', $loan->id],'id'=>'delete-form-'.$loan->id]) !!} {!! Form::close() !!} @endcan |
{{Form::open(array('url'=>'saturationdeduction','method'=>'post'))}}
@csrf
{{ Form::hidden('employee_id',$employee->id, array()) }}
{{Form::close()}}
{{ Form::label('deduction_option', __('Deduction Options*')) }}
{{ Form::select('deduction_option',$deduction_options,null, array('class' => 'form-control ','required'=>'required')) }}
{{ Form::label('title', __('Title')) }}
{{ Form::text('title',null, array('class' => 'form-control ','required'=>'required')) }}
{{ Form::label('amount', __('Amount')) }}
{{ Form::number('amount',null, array('class' => 'form-control ','required'=>'required')) }}
{{ Form::button(' '.__('Save Change'), ['type' => 'submit','class' => 'btn btn-primary']) }}
{{__('Employee Name')}} | {{__('Deduction Option')}} | {{__('Title')}} | {{__('Amount')}} | {{__('Action')}} |
---|---|---|---|---|
{{ $saturationdeduction->employee()->name }} | {{ $saturationdeduction->deduction_option()->name }} | {{ $saturationdeduction->title }} | {{ $saturationdeduction->amount }} | @can('edit saturation deduction') {{__('Edit')}} @endcan @can('delete saturation deduction') {{__('Delete')}} {!! Form::open(['method' => 'DELETE', 'route' => ['saturationdeduction.destroy', $saturationdeduction->id],'id'=>'delete-form-'.$saturationdeduction->id]) !!} {!! Form::close() !!} @endcan |
{{Form::open(array('url'=>'otherpayment','method'=>'post'))}}
@csrf
{{ Form::hidden('employee_id',$employee->id, array()) }}
{{Form::close()}}
{{ Form::label('title', __('Title')) }}
{{ Form::text('title',null, array('class' => 'form-control ','required'=>'required')) }}
{{ Form::label('amount', __('Amount')) }}
{{ Form::number('amount',null, array('class' => 'form-control ','required'=>'required')) }}
{{ Form::button(' '.__('Save Change'), ['type' => 'submit','class' => 'btn btn-primary']) }}
{{__('employee')}} | {{__('Title')}} | {{__('Amount')}} | {{__('Action')}} |
---|---|---|---|
{{ $otherpayment->employee()->name }} | {{ $otherpayment->title }} | {{ $otherpayment->amount }} | @can('edit other payment') {{__('Edit')}} @endcan @can('delete other payment') {{__('Delete')}} {!! Form::open(['method' => 'DELETE', 'route' => ['otherpayment.destroy', $otherpayment->id],'id'=>'delete-form-'.$otherpayment->id]) !!} {!! Form::close() !!} @endcan |
{{Form::open(array('url'=>'overtime','method'=>'post'))}}
@csrf
{{ Form::hidden('employee_id',$employee->id, array()) }}
{{Form::close()}}
{{ Form::label('title', __('Overtime Title*')) }}
{{ Form::text('title',null, array('class' => 'form-control ','required'=>'required')) }}
{{ Form::label('number_of_days', __('Number of days')) }}
{{ Form::number('number_of_days',null, array('class' => 'form-control ','required'=>'required')) }}
{{ Form::label('hours', __('Hours')) }}
{{ Form::number('hours',null, array('class' => 'form-control ','required'=>'required')) }}
{{ Form::label('rate', __('Rate')) }}
{{ Form::number('rate',null, array('class' => 'form-control ','required'=>'required')) }}
{{ Form::button(' '.__('Save Change'), ['type' => 'submit','class' => 'btn btn-primary']) }}
{{__('Employee Name')}} | {{__('Overtime Title')}} | {{__('Number of days')}} | {{__('Hours')}} | {{__('Rate')}} | {{__('Action')}} |
---|---|---|---|---|---|
{{ $overtime->employee()->name }} | {{ $overtime->title }} | {{ $overtime->number_of_days }} | {{ $overtime->hours }} | {{ $overtime->rate }} | @can('adit allowance') {{__('Edit')}} @endcan @can('delete allowance') {{__('Delete')}} {!! Form::open(['method' => 'DELETE', 'route' => ['overtime.destroy', $overtime->id],'id'=>'delete-form-'.$overtime->id]) !!} {!! Form::close() !!} @endcan |