@extends('admin.master') @section('title','Stock Transfer Details') @section('page_css') @endsection @section('content')
@yield('title')

From Warehouse: @if(isset($data->fromWarehouse)) {{ $data->fromWarehouse->name }} @endif

To Warehouse: @if(isset($data->toWarehouse)) {{ $data->toWarehouse->name }} @endif

Date: {{ $data->date }}

@php $sl=0;$totalProductCost=0; @endphp @foreach($data->stockTransferDetails as $transfer_details ) @php $sl++; if(isset($transfer_details->product)) { $totalProductCost= $totalProductCost+$transfer_details->product->product_cost * $transfer_details->transfer_quantity; } @endphp @endforeach
{{ Form::close() }}
@endsection @section('page_scripts') @endsection