@extends('layouts.admin.master') @section('title', 'Stock Transfer') @section('vendor-style') @endsection @section('vendor-script') @endsection @section('content')
@if(count($errors) > 0) @endif @if($message = Session::get('success')) @endif
{{ $transferlist->fromBranch->name }}
{{ $transferlist->toBranch->name }}
@foreach($transferlist->transferDetails as $material) @endforeach
# Code Name Quantity
{{ $loop->iteration }} {{ $material->product->code }} {{ $material->product->name }} {{ $material->quantity }}
@endsection