@extends('layouts/pos_layout') @section('title', '| '.$moduleTitle) @section('content') @include('successMsg')
| Requisition No | : | {{$reqBillNo}} | Requisition Date | : | {{date('d-m-Y', strtotime($data->requisition_date))}} | From | : | {{$data->fromBranch->name}} | ||
| Supplier | : | {{$data->posRequisitionSupplier->name}}({{ $data->posRequisitionSupplier->company_name }}) | Total Quantity | : | {{$data->total_quantity}} | To | : | {{$data->toBranch->name}} |
| SL No. | Product Name | Model Name | Current Stock | {{--Barcode | --}}Qty | ||||
|---|---|---|---|---|---|---|---|---|---|
| {{++$no}} |
@php
$productAll = \App\Models\pos\ProductConfig\PosProduct::whereIntegerInRaw('id',json_decode($details->product_id))->groupBy('name')->get();
//dd($productAll);
@endphp
@foreach($productAll as $keyProduct => $productData)
{{ $productData->name }} @endforeach |
{{$details->posProductModel->name}} | {{ $details->current_stock }} | @if($isEditAccess == true) @else {{$details->quantity}} @endif | |||||
| Total | {{$t_qty}} | ||||||||