@extends('layouts.master') @section('title', 'Paiements des personnels (Tailleurs)') @section('content')

@yield('title')

@if ($paiement->reliquat > 0) @endif

Période des tâches

Date de début {{ \Carbon\Carbon::parse($paiement->start_date)->format('d-m-Y') }}
Date de fin {{ \Carbon\Carbon::parse($paiement->end_date)->format('d-m-Y') }}

Liste des accomptes

@if ($accomptes->count() > 0) @foreach ($accomptes as $accompte) @endforeach @else @endif
Date Accompte Actions
{{ \Carbon\Carbon::parse($accompte->date)->format('d/m/Y')}} {{ number_format($accompte->accompte, 0, '.', ' ') }} GNF
Aucun accompte trouvé.

Liste des tâches

@if ($taches->count() > 0) @foreach ($taches as $tache) @endforeach @else @endif
Date Tailleur Quantité Tâches Prix Total
{{ \Carbon\Carbon::parse($tache->tache->date)->format('d/m/Y')}} {{ $tache->tache->tailleur->first_name }} {{ $tache->tache->tailleur->last_name }} {{ $tache->tache->nombre }} {{ $tache->tache->type }} {{ number_format($tache->tache->prix, 0, '.', ' ') }} GNF {{ number_format($tache->tache->total, 0, '.', ' ') }} GNF
{{ $taches_quantity }} {{ number_format($taches_sum, 0, '.', ' ') }} GNF
Aucune tâche trouvée.
@endsection