@extends('layouts.adminapp') @section('title') {{ __('lng.PaySalary') }} - {{ __('lng.Receipt') }} @endsection @section('active_payroll', 'active') @section('open_payroll', 'open') @section('active_set_salary', 'active') @section('content')

{{ __('lng.Receipt') }}

@php $Y = date('Y', strtotime($SalaryPay->date)); $M = date('F', strtotime($SalaryPay->date)); $D = date('d', strtotime($SalaryPay->date)); $get_amount = PBFunc::AmountInWords($SalaryPay->amount); @endphp
{{ __('lng.SalaryReciept') }}

@currency($SalaryPay->amount)

{{ __('lng.Completed') }} . {{ $D }} {{ $M }} {{ $Y }}

{{ __('lng.SalaryPaymentDetails') }}
{{ __('lng.Invoiceno') }} .
#{{ $SalaryPay->invoicenumber }}
{{ __('lng.Name') }}
{{ $SalaryPay->employee->name }}
{{ __('lng.Phone') }}
{{ $SalaryPay->employee->phone }}
{{ __('lng.HouseName') }}
{{ $SalaryPay->employee->house }}
{{ __('lng.Designation') }}
{{ $SalaryPay->employee->designation->title }}
{{ __('lng.TotalAmountinwords') }}
{{ $get_amount }} Only
@include('PrintHeader.CompanyDetails2')
@endsection