@php
$existingElsewhere = session('existingElsewhere') ?? [];
$serials = session('existingSerials') ?? collect();
$prefixResults = session('prefixResults') ?? [];
$lastClients = session('lastClients') ?? [];
@endphp
@if(!empty($existingElsewhere))
Attention : Ces numéros de série existent déjà pour un autre utilisateur :
@foreach($existingElsewhere as $serialValue)
- {{ $serialValue }}
@endforeach
@endif
@isset($totalInput)
Total saisi : {{ $totalInput }}
@endisset
@if(session('printRepairMulti'))
@endif
@endsection