@extends('layouts.app') @section('title', __('purchase.order.order')) @section('content')
@if(session('success'))
{{ session('success') }}
@endif
@foreach($receives as $key => $receive) @endforeach
# GRN No Date No.of Items Vendor PO Code Total Action
{{ $key + 1 }} {{ $receive->gr_no }} {{ \Carbon\Carbon::parse($receive->gr_date)->format('d/m/Y') }} {{ $receive->items->count() }} {{ $receive->vendor->full_name ?? '' }} {{ $receive->purchaseOrder->order_code ?? '' }} {{ $receive->total_qty }}
@section('js') @endsection