@extends('layouts.pdf') @section('title') {{ $extra['module_name'] }} @endsection @push('include-css') {{----}} @endpush @section('content')
Requisition No.
{{ $requisition_id }}

{{ config('settings.company_name') }}

{{ config('settings.address_1') }}

Approved Purchase Requisition

Project Name : {{ App\Models\Branch::find($items->branch_id)->name }}

Project Address : {{ App\Models\Branch::find($items->branch_id)->location }}

Contract : {{ $items->contract_person }}

Purpose : {{ $items->purpose }}

Requisition Date : {{ $transaction->date_format($items->requisition_date) }}

Required Date: {{ $transaction->date_format($items->required_date) }}

Requisition Raised By : {{ $items->employee_id }}

@php $a = App\Models\PRExtendApproval::where('requisition_id',$items->id)->get(); $approved_by = explode("@",$a[0]->approved_by); @endphp

Requisition Approved By : {{ ucfirst($approved_by[0]) }}

@php // $encoded_item = json_decode($items->item); $row_span=count($items->item)+1; $sl= 1; @endphp @foreach($items->item as $key => $item) @endforeach
SL.NO. Item Name Unit {{__('lang.description')}} Required Quantity Approved Quantity Rejected Quantity
{{ $sl }} {{ App\Models\Item::find($item->item_id)->name }} {{ App\Models\Item::find($item->item_id)->unit }} {{ $item->description }} {{ $transaction->convert_money_format( $items->approved[$key][0]->demand_quantity ) }} {{ $transaction->convert_money_format( $items->approved[$key][0]->approved_quantity ) }} {{ $transaction->convert_money_format( $items->approved[$key][0]->rejected_quantity ) }}

Printing Date & Time: {{ $extra['current_date_time'] }}

@stop