@extends('layouts.app') @section('content')

Iniatiate Stock Take

@if (count($items) > 0)

Doc No: {{ $header->doc_no }}

Plant: {{ $header->plant }}

Location: {{ $header->storage_location }}

Date: {{ $header->proposed_date }}


@csrf
@foreach ($items as $item) @endforeach
Material name Material No.
{{ $item->material_name }} {{ $item->material_no }}
@else

Stock take materials not yet loaded!

@endif
@endsection