Achats
Suivi de tous vos achats en cours et finalisés
@if(isset($total))
@foreach($total as $key=>$value)
@endforeach
@endif
Solde total achats validés
{{$value}} {{$key}}
@if ($errors->any())
@endif
@if(session("success"))
-
@foreach ($errors->all() as $error)
- {{ $error }} @endforeach
{{session('success')}}
@elseif(session("error"))
{{session('error')}}
@endif
NB: Vous devez valider la réception des achats avant de finaliser
la transaction.
Notez que chaque transaction sera vérifiée avant validation.
Notez que chaque transaction sera vérifiée avant validation.
| Référence | Boutique | Client | Prix total | Montant payer | Reste à payer | Mode de paiement | Moyen de paiement | Mode de livraison | Etat d'achat | Etat de réception | Date | Actions |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{$commande->reference}} | @if($commande && $commande->boutique) {{$commande->boutique->nom_boutique}} @endif | {{$commande->first_name}} {{$commande->last_name}} | {{$commande->total_price}} {{$commande->currency}} | @if($commande->paiement_type=='paid_now') @if($commande->statut_paiement!=true) {{$commande->total_price}} {{$commande->currency}} @else {{$commande->montant_payer}} {{$commande->currency}} @endif @else {{$commande->montant_payer}} {{$commande->currency}} @endif | {{($commande->total_price)-( $commande->paiement_type=='paid_now' ? ($commande->statut_paiement==true ? $commande->total_price : $commande->montant_payer ) : $commande->montant_payer )}} {{$commande->currency}} | @if($commande->paiement_type=='paid_now') Paiement direct @elseif($commande->paiement_type=='paid_echellon') Paiement échelloné @else Paiement après livraison @endif | {{$commande->source}} {{$commande->source_name}} | {{$commande->service_shipping != null ? $commande->service_shipping->name : 'aucun'}} | @if($commande->paiement_type=='paid_now') @if($commande->statut_paiement!=true) echec de paiement @else paiement effectué @endif @else paiement après livraison @endif |
@if($commande->shipping==true)
details
@if($commande->statut_shipping!=true) en attente de livraison @else livraison effectuée le {{$commande->updated_at->format('d-m-y à H:i')}} @endif @else Livraison non incluse @endif |
{{$commande->created_at->format('d-m-y à H:i')}} |
|
{{ $commandes->links() }}