@extends('layouts.app') @section('title') Purchase Order Approval Pending @stop @section('breadcrumb') @stop @section('css') @stop @section('css') @stop @section('content')

Approval Pending CS / PR-{{$purchase_request->id}} Print
{{csrf_field()}}
Cancel

{{env('APP_NAME')}}

APPROVAL PENDING COMPARATIVE STATEMENT
Project Phone
{{ env('APP_NAME')}} {{env('APP_CONTACT')}}

Company Details

Company {{ env('APP_NAME')}}
Contact {{env('APP_CONTACT')}}
Address {{env('APP_ADDRESS')}}

Items Comparison List

@php $total_items = 0; $amount = 0; $quantity = 0; @endphp @foreach( $purchase_request->item_purchase_requests as $list )
@php $item = \App\Item::withTrashed()->find($list->item_id); @endphp '; } else { $table_content .= ''; } $table_content .= ''; } if($count > 0) { $string = '[ '. $count .' ] ' ; } else { $string = 'No Cs Receive yet'; } echo $string; @endphp @php $total_items ++; $amount += ( $list->price * $list->quantity ); $quantity += $list->quantity; @endphp @if($count > 0)

Vendor Statements

@php echo $table_content; @endphp
Vendor Price Message Date Order Quantity
@endif
@endforeach
Authorized By
Position Name Date Signature
Purchase Officer Name And Signature {{ Ucfirst( $purchase_request->cs_purchase_officer )}} @if($purchase_request->cs_purchase_officer_date){{ date('d-F-Y' , strtotime( $purchase_request->cs_purchase_officer_date) )}} @else {{'.'}} @endif
Purchase Manager Name And Signature {{ Ucfirst( $purchase_request->cs_purchase_manager )}} @if($purchase_request->cs_purchase_manager_date){{ date('d-F-Y' , strtotime( $purchase_request->cs_purchase_manager_date) )}} @else {{'.'}} @endif
Date : {{date('d-F-Y')}}
Print By : {{ Ucfirst(Auth::user()->name) }}
Purchase Officer Name And Signature

Purchase Manager

Total Item: {{number_format($total_items, 2)}}

Total Items Quantity: {{number_format($quantity, 2)}}

Total Amount: PKR {{number_format($amount , 2) }}