@extends('layouts.dashboard') @section('page_title') Manage BOQ Request @endsection @section('page_header_title') Manage BOQ Request @endsection @section('page_body') {{ Breadcrumbs::render('managepurchaserequisition',Crypt::encrypt($boq_detail->id)) }} @php($label_list = EF::getWhiteLabel())

Manage Purchase Requisition ({{$boq_detail->sr_no}}) Pending

PR # RS/PR/000{{$boq_detail->id}}
Project : {{$boq_detail->branch->name}}
Created At : {{EF::dateFormat($boq_detail->created_at)}}
Remarks: {{$boq_detail->remarks}}
Prepared By: {{$boq_detail->approvedby->name}}

List of Items requested in Purchase Requisition

{{ Form::open(array('route' => 'boq.acceptfirst', 'id' => 'form_accept_boq', 'class' => 'cls_from ', 'enctype' => 'multipart/form-data')) }}
@if(isset($boq_items_lists))
@foreach($boq_items_lists as $row) @endforeach
Sr# Item Name Type Category Quantity Range Unit Required Qty Required Date Remarks
{{$loop->iteration}} {{$row->item->name}} {{$row->item->type}} {{$row->item->inventoryCategory->name}} {{$row->item->minimum}} - {{$row->item->maximum}} {{$row->item->inventoryUnit->name}} {{$row->quantity}} {{EF::dateFormat($row->created_at)}} {{$row->item_description}}
@endif
{{ Form::close() }} @endsection @section('page_modal') @endsection @section('page_script') @include('inventory_module.scripts.boq') @endsection