Melkan Suppliers
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
# |
Name |
Email |
Phone |
Contact Person |
KRA Pin |
Status |
Action |
@foreach ($suppliers as $supplier)
{{ $loop->iteration }} |
{{ $supplier->name }} |
{{ $supplier->email }} |
{{ $supplier->phone }} |
{{ $supplier->contact_person }} |
{{ $supplier->kra_pin }} |
@if($supplier->status == 'active')
Active |
@else
Suspended |
@endif
|
@include('procurement.supplier.products');
@endforeach
@include('procurement.supplier.add')
Supplier Products
ID |
Supplier Name |
Product Name |
Cost |
Quantity |
U.O.M |
Action |
@foreach ($supplierProducts as $supplierProduct)
{{ $loop->iteration }} |
{{$supplierProduct->supplier->name }} |
{{ $supplierProduct->product->name }} |
{{ $supplierProduct->cost }} |
{{ $supplierProduct->quantity }} |
{{ $supplierProduct->uom->name }} |
|
@endforeach
@include('procurement.supplier.updateproducts')