@extends('layouts.app') @section('title', 'Suppliers') @section('breadcrumb')
Manage your product suppliers
| Supplier | Contact | Address | Balance Due | Status | Actions |
|---|---|---|---|---|---|
|
{{ $supplier->name }}
@if($supplier->company)
{{ $supplier->company }}
@endif
|
@if($supplier->phone)
{{ $supplier->phone }}
@endif
@if($supplier->mobile)
{{ $supplier->mobile }}
@endif
@if($supplier->email)
{{ $supplier->email }}
@endif
|
@if($supplier->city || $supplier->country) {{ $supplier->city }}{{ $supplier->country ? ', ' . $supplier->country : '' }} @else - @endif | Rs. {{ number_format($supplier->current_balance, 2) }} | @if($supplier->is_active) Active @else Inactive @endif | |
|
No suppliers found Add First Supplier |
|||||