@extends('layouts.app') @section('content')
Order Buyer is Approved PO Buyer
| No | Date | PO Buyer No | PO Buyer Date | PIC | Approved By | Status | Action |
|---|---|---|---|---|---|---|---|
| {{ $orderBuyer->no }} | {{ $orderBuyer->formatted_date }} | {{ $orderBuyer->po->no }} | {{ $orderBuyer->po->formatted_date }} | {{ $orderBuyer->createdBy->full_contact }} | {{ $orderBuyer->approvedBy->full_contact }} | @switch($orderBuyer->is_complete) @case(false) Not complete @break @case(true) Completed @break @default @endswitch @switch($orderBuyer->status) @case(false) Need approval @break @case(true) Approved @break @default @endswitch |