Supplier Management

Manage your device and SIM card suppliers

Add Supplier
@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
Error!
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(isset($statistics))

{{ $statistics['total'] ?? 0 }}

Total Suppliers

{{ $statistics['active'] ?? 0 }}

Active Suppliers

{{ $statistics['device_suppliers'] ?? 0 }}

Device Suppliers

{{ $statistics['sim_suppliers'] ?? 0 }}

SIM Suppliers

@endif
@forelse($suppliers as $supplier) @empty @endforelse
Supplier Info Contact Type Inventory Status Actions
{{ substr($supplier->name, 0, 1) }}
{{ $supplier->name }}
@if($supplier->company_name)
{{ $supplier->company_name }}
@endif
{{ $supplier->contact_person ?? 'N/A' }}
{{ $supplier->phone ?? 'No phone' }}
@if($supplier->email)
{{ $supplier->email }}
@endif
@if($supplier->supplier_type === 'device') 📱 Device @elseif($supplier->supplier_type === 'sim') 📞 SIM @else 📦 Both @endif
📱 {{ $supplier->inventories_count ?? 0 }} Devices
📞 {{ $supplier->sim_cards_count ?? 0 }} SIM Cards
@if($supplier->is_active) ✓ Active @else ✗ Inactive @endif
@csrf @method('DELETE')

No suppliers found

Add your first supplier to get started

@if($suppliers->hasPages())
{{ $suppliers->links() }}
@endif