@extends('both.template') @section('title', 'SALAIRES | OPTIMIA') @section('styleSheets') @endsection @section('content')
@foreach($salaries as $salary) {{-- after generation employee w'll receive notifications that is salary is reday and approved it after that we can take money--}} @endforeach
Employé Identifiant Email Date d'entrée Salaire Brute Payslip Action

@if ($salary->idEmployee != auth()->id()) {{ $salary->employeeFirstname.' '.$salary->employeeLastname }} @else Vous @endif {{ $salary->designationName }}

{{ $salary->employeeCode }} {{ $salary->employeeEmail }} {{ App\Utils\Utils::getDBDateFormat($salary->employeeJoinDate, true) }} @if ($salary->employeeSalary!=0) @else Aucun @endif Générer
{{ csrf_field() }}
@endsection @section('scriptsSheets') @endsection