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

Suppliers

Manage your supplier information

@if($suppliers->count() > 0) @foreach($suppliers as $supplier) @endforeach
Name Contact Email Phone Status Actions
{{ $supplier->name }}
{{ $supplier->contact_person ?? '-' }} {{ $supplier->email ?? '-' }} {{ $supplier->phone ?? '-' }} @if($supplier->is_active) Active @else Inactive @endif Edit
{{ $suppliers->links() }}
@else

No suppliers

Get started by creating a new supplier.

@endif
@endsection