{{-- SELECTION DE LA BOUTIQUE --}}
{{-- AFFICHAGE DES ARTICLES --}}
@if ($articles->count() > 0) @foreach ($articles as $article)
{{ $article->name }}

Stock : {{ $article->quantity }}

{{ number_format($article->price, 0, ',', ' ') }} FCFA

@endforeach @else
Aucun article trouvé.
@endif
{{-- Liste des résultats --}} @if(!empty($searchResults))
    @foreach($searchResults as $client)
  • {{ $client->fullname }} — {{ $client->contact }}
  • @endforeach
@endif {{-- Bouton créer si aucun client trouvé --}} @if($showCreateButton)
Aucun client trouvé pour : {{ $searchClient }}
@endif
@if (count($lines) > 0)
@foreach ($lines as $index => $line) @endforeach
Article Prix Quantité Total Actions
{{ $line['name'] }} {{ number_format($line['price'], 0, '.', ' ') }} FCFA {{ number_format($line['amount'], 0, '.', ' ') }} FCFA

Total : {{ number_format($total, 0, '.', ' ') }} FCFA

@else

Aucun article dans le panier.

@endif
@if ($showPaymentModal)
@endif @if($showClientModal)
@endif