@extends('layouts.app') @section('title', 'Supplier Details') @section('content') @can('view_suppliers')

{{ $supplier->name }}

← Back to Suppliers

Contact Information

Phone

{{ $supplier->phone ?? '-' }}

Email

{{ $supplier->email ?? '-' }}

Contact Person

{{ $supplier->contact_person ?? '-' }}

Address

{{ $supplier->address ?? '-' }}

@if($supplier->products->count() > 0)

Supplied Products

@foreach($supplier->products as $m) @endforeach
ProductStockPrice
{{ $m->name }}{{ $m->quantity }}${{ number_format($m->selling_price, 2) }}
@endif

Status

@if($supplier->is_active) Active @else Inactive @endif
@endcan @endsection