@extends('layouts.dashboard') @section('page_title') BOQ Requests @endsection @section('page_header_title') BOQ Requests @endsection @php($label_list = EF::getWhiteLabel()) @section('page_body') {{ Breadcrumbs::render('boqrequests') }}

BOQ Requests

@if(isset($boq_list)) @foreach($boq_list as $rows) @endforeach @endif
# Entry No Remarks BOQ Date Status Project
{{$loop->iteration}} {{$rows->sr_no}}

{!!wordwrap($rows->remarks,40,'
')!!}

{{EF::dateFormat($rows->created_at)}} @if($rows->status == "Approved") {{$rows->status}} @elseif($rows->status == "In Process" || $rows->status == "Waiting") Approved @elseif($rows->status == "Pending") {{$rows->status}} @else {{$rows->status}} @endif {{$rows->branch->name}}
@endsection @section('page_modal') @endsection @section('page_script') @endsection