@extends('layouts.app') @section('title', 'Kit Service | Bulletin de Paie') @section('content')
Retour

Kit Service SARL

Bulletin de Paie

Logo
Informations de l'Employé

Matricule: {{ $employee->employee_id ?? '' }}

Nom: {{ $employee->first_name ?? '' }} {{ $employee->last_name ?? '' }} {{ $employee->middle_name ?? '' }}

Fonction: {{ $employee->function ?? '' }}

Département: {{ $employee->department ?? '' }}

Date d'embauche: {{ $employee->created_at->format('d/m/Y') ?? '' }}

Point de paie: KAMOA

{{--

Nombre d'enfants: {{ $employee->children->count() ?? 0 }}

--}}

N CNSS: ..............................

Employeur

Raison Sociale: Kit Service SARL

Adresse: N°1627 B Av. Kamina

Quartier Mutoshi Kolwezi

Commune de Manika

Lualaba RDC

Ville de Kolwezi

Téléphone: 00243977333977

Affiliation CNSS: 050302727C1

Détails du Salaire

Temps (jours): {{ $payroll->worked_days ?? 0 }}

Salaire de Base: {{ number_format($payroll->basic_usd_salary ?? 0, 0, ',', '.') }} USD

Heures Supplémentaires: {{ number_format($payroll->ot_amount ?? 0, 0, ',', '.') }} USD

Logement / Avantages: {{ number_format($payroll->accommodation_allowance ?? 0, 0, ',', '.') }} USD

Congé Annuel: {{ number_format($payroll->annual_leave ?? 0, 0, ',', '.') }} USD

Congé Maladie: {{ number_format($payroll->sick_leave ?? 0, 0, ',', '.') }} USD

Déductions

INSS 5%: {{ number_format($payroll->inss_5 ?? 0, 0, ',', '.') }} CDF

IPR: {{ number_format($payroll->ipr_rate ?? 0, 0, ',', '.') }} CDF

Autres Déductions: {{ number_format($payroll->other_deductions ?? 0, 0, ',', '.') }} CDF

Total Brut (USD): {{ number_format($payroll->total_earnings ?? 0, 0, ',', '.') }} USD
Total Déductions (CDF): {{ number_format($payroll->total_taxes_cdf ?? 0, 0, ',', '.') }} CDF
Net à Payer (USD): {{ number_format($payroll->net_usd ?? 0, 0, ',', '.') }} USD
Net à Payer (CDF): {{ number_format($payroll->net ?? 0, 0, ',', '.') }} CDF

Signature de l'agent

@endsection