@extends('layouts.app') @section('title', 'Suppliers') @section('content')

Suppliers Management

Manage your product suppliers

@if($suppliers->count() > 0)
@foreach($suppliers as $supplier) @endforeach
ID Supplier Contact Person Phone Email Products Stock Entries Actions
{{ $supplier->id }}
{{ $supplier->name }}
{{ $supplier->contact_person ?? 'N/A' }} {{ $supplier->phone ?? 'N/A' }} {{ $supplier->email ?? 'N/A' }} {{ $supplier->products_count ?? 0 }} {{ $supplier->stock_entries_count ?? 0 }}
@csrf @method('DELETE')
@else
No Suppliers Found

Start by adding your first supplier to the system.

Add Supplier
@endif
@endsection