@extends('layouts.app') @section('title', 'Supplier Details') @section('content') @can('view_suppliers')
Phone
{{ $supplier->phone ?? '-' }}
{{ $supplier->email ?? '-' }}
Contact Person
{{ $supplier->contact_person ?? '-' }}
Address
{{ $supplier->address ?? '-' }}
| Product | Stock | Price |
|---|---|---|
| {{ $m->name }} | {{ $m->quantity }} | ${{ number_format($m->selling_price, 2) }} |