@extends('layouts/pos_layout') @section('title', '| '.$moduleTitle) @section('content')
{{ $moduleTitle }}
Transfer Bill No : PTB{{$data->transfer_info->transferBillNo}} Bill Date : {{date('d-m-Y', strtotime($data->transfer_info->transferDate))}}
Total Quantity : {{$data->transfer_info->totlaTransferQuantity}} Total Amount : {{number_format($data->transfer_info->totalTransterAmount, 2)}}


@php $no=0; $t_qty = $t_amount = 0; $BranchID = 0; @endphp @php $BranchID = $data->transfer_info->branchId; @endphp
SL No. Transfer Bill No Requisition No Request Transportation Cost Approve Transportation Cost Comment Action
{{++$no}} {{$data->transferBillNo}} {{ $data->requisitionBillNo }} {{ $data->delivery_cost }} {{ $data->branch_delivery_cost }} {{ $data->comment }} @if($data->status == NULL) Pending @elseif($data->status == 0) Rejected @else Approved @endif


Approval System With (Transfer Transportation Cost)
{{ $roleType }}

Transfer Bill No:


Requisition Bill No:


Transportation Cost


Comment Box
{!! Form::textarea('approvalComment', $data->comment, [ 'id' => 'approvalComment', 'class' => 'form-control form-control js-comment-src', 'rows' => 2, 'placeholder' => 'Enter comment here...', 'readonly' => 'readonly', 'cols' => 40, ]) !!}


@endsection