SteelERP
Manufacturing & Trading
Supplier Directory
Generated: {{ now()->format('d M Y, H:i') }}
Total Records: {{ $suppliers->count() }}
@php $active = $suppliers->where('is_active', true)->count(); $inactive = $suppliers->where('is_active', false)->count(); @endphp
{{ $suppliers->count() }}
Total Suppliers
{{ $active }}
Active
{{ $inactive }}
Inactive
@forelse($suppliers as $i => $supplier) @empty @endforelse
# Supplier Name Contact Person Email Phone Tax Number Status
{{ $i + 1 }} {{ $supplier->name }} {{ $supplier->contact_person ?: '—' }} {{ $supplier->email ?: '—' }} {{ $supplier->phone ?: '—' }} {{ $supplier->tax_number ?: '—' }} @if($supplier->is_active) Active @else Inactive @endif
No suppliers found.