@extends('layouts.dashboard')
@section('page_title')
BOQ Details
@endsection
@section('page_header_title')
BOQ Details
@endsection
@section('page_body')
{{ Breadcrumbs::render('boqdetails',Crypt::encrypt($boq_detail->id)) }}
@php($label_list = EF::getWhiteLabel())
BOQ Details
| Project |
{{$boq_detail->branch->name}} |
| Floor |
{{$boq_detail->floor}} |
| BOQ # |
{{$boq_detail->sr_no}} |
| Remarks |
{{$boq_detail->remarks}} |
| Created At |
{{EF::dateFormat($boq_detail->created_at)}} |
| # |
Item |
Type |
Quantity |
Unit |
Category |
Remarks |
Required Date |
Status |
@foreach($boq_detail->getBoqItems as $rows)
| {{$loop->iteration}} |
{{$rows->item->name}} |
{{$rows->item->type}} |
{{$rows->quantity}} |
{{$rows->item->inventoryUnit->name}} |
{{$rows->item->inventoryCategory->name}} |
{{$rows->item_description}} |
{{EF::dateFormat($rows->created_at)}} |
{{$rows->boq->status}} |
@endforeach
@if($rows->boq->status == 'Pending' && Auth::user()->hasAnyPermission(['All','Accept BOQ']))
Accept
@endif
@if($rows->boq->status == 'Pending' && Auth::user()->hasAnyPermission(['All','Reject BOQ']))
Reject
@endif
@endsection
@section('page_modal')
@endsection
@section('page_script')
@include('inventory_module.scripts.boq')
@endsection