ADMIN MANAGEMENT
@php $adminAvatar = $adminAvatar ?? asset('images/bzmtch_logo.png'); $adminFullName = $adminFullName ?? $adminUsername ?? 'Admin'; @endphp
{{-- Flash / Errors --}} @if($errors->any())
    @foreach($errors->all() as $e)
  • {{ $e }}
  • @endforeach
@endif @if(session('success'))
{{ session('success') }}
@endif

Barcode

| >

Product Serial Code Generator & Printer

Product Serial Code Generator & Printer
STORE / COMPANY NAME
PRODUCT NAME
0.00 PCS
Execution / Formatting
@csrf
Barcode Sticker / Paper
Printing Quantity

Recent Generated Barcode

@if(!empty($recentBarcodes) && $recentBarcodes->count())
@foreach($recentBarcodes as $barcode) @endforeach
# Product Barcode Price Qty Printed At
{{ $barcode->id }} {{ $barcode->product_name }} {{ $barcode->barcode_value }} ₱{{ number_format($barcode->price ?? 0, 2) }} {{ $barcode->quantity }} {{ optional($barcode->printed_at)->format('Y-m-d H:i') ?? '-' }}
@else
No barcodes generated yet. Create one using the generator.
@endif
@include('admin.partials.inbox')