ADMIN MANAGEMENT
@php
$adminAvatar = $adminAvatar ?? asset('images/bzmtch_logo.png');
$adminFullName = $adminFullName ?? $adminUsername ?? 'Admin';
@endphp
{{ $adminFullName }}
{{ $adminUsername ?? 'Admin' }}
-
@foreach($errors->all() as $e)
- {{ $e }} @endforeach
{{ session('error') }}
@endif
Stock Out
| > @if(isset($selectedBatch) && $selectedBatch) List of Stock Out by Batch >Batch {{ $selectedBatch->encode_number ?: '#' . $selectedBatch->id }}@if($selectedBatch->consignee || $selectedBatch->reference) — {{ strtoupper($selectedBatch->consignee ?? $selectedBatch->reference) }}@endif
@elseList of Stock Out by Batch
@endif
@if($batches->isEmpty())
No batches yet. Click "ADD" to create your first stock out batch.
@else @endif
@php $stockOuts = $stockOuts ?? collect(); @endphp
@if($stockOuts->isEmpty())
No products in this batch yet. Click "ADD" to add products to stock out in this batch.
@else @endif