@extends('layouts.master') @section('content')

Detil

{{ $po->status }}
{{ $po->created_at}}
@foreach ($po->details as $row)
{{ strtoupper($row->raw_material) }}
{{ $row->price_unit }}
{{ $row->request }}
@if($po->reason != 'STOCK')
{{ $row->request_wo}}
@endif
@endforeach
{{ $po->discount }} %
{{ $po->total }}
@if($po->status == 'Done')
{{ $po->total_approved }}
@endif
@endsection