{{-- SELECTION DE LA BOUTIQUE --}}
{{-- AFFICHAGE DES ARTICLES --}}
@if (count($articles) > 0) @foreach ($articles as $article)
{{ $article->name }}
{{ $article->name }}
Stock : {{ $article->quantity }}
{{ money($article->price) }}
@if($article->quantity <= 0) Rupture de stock @endif
@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'] }} {{ money($line['price']) }} {{ money($line['amount']) }}

Total : {{ money($total) }}

@else

Aucun article dans le panier.

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