@extends('layouts.master') @section('title', 'Restock') @section('style') @endsection @section('script') @endsection @section('content') @include('layouts.sidebar') @include('layouts.header-sub')
@yield('title')


@foreach ($stocks as $i => $stock) @endforeach
No. Purchase Code Supplier Delivery Date Add Stock by Manage
{{ $loop->iteration }} {{ $stock->purchase_order ?? '-' }} {{ $stock->supplier_name ?? '-' }} {{ $stock->delivery_date ? \Carbon\Carbon::parse($stock->delivery_date)->format('Y-m-d') : '-' }} {{ $stock->user_fullname ?? '-' }}
@include('layouts.footer') @endsection