Suppliers

Manage {{ number_format($suppliers->total()) }} supplier relationships

New Purchase Order Add Supplier

Filter & Search

Clear All
Search Suppliers
Status
Sort By
@if($search) Search: "{{ $search }}" @endif @if($statusFilter !== '') Status: {{ $statusFilter ? 'Active' : 'Inactive' }} @endif
Showing {{ $suppliers->firstItem() ?? 0 }} to {{ $suppliers->lastItem() ?? 0 }} of {{ number_format($suppliers->total()) }} suppliers
Per page:
@forelse($suppliers as $supplier) @empty @endforelse
Name @if($sortBy === 'name') @endif
Company @if($sortBy === 'company_name') @endif
Contact Parts Rating Status Actions
{{ $supplier->name }}
@if($supplier->contact_person && $supplier->contact_person !== $supplier->name)
Contact: {{ $supplier->contact_person }}
@endif
{{ $supplier->company_name ?: 'N/A' }}
@if($supplier->city && $supplier->state)
{{ $supplier->city }}, {{ $supplier->state }}
@endif
@if($supplier->email)
{{ $supplier->email }}
@endif @if($supplier->phone)
{{ $supplier->phone }}
@endif
{{ $supplier->parts_count }} parts @if($supplier->rating)
@for($i = 1; $i <= 5; $i++) @if($i <= $supplier->rating) @else @endif @endfor
{{ number_format($supplier->rating, 1) }}
@else No rating @endif
@if($supplier->is_active) Active @else Inactive @endif Edit

No suppliers found

Get started by adding your first supplier.

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