@extends('layouts.dashboard.superadminapp') @section('title', 'GRN Details') @section('content')

UEPL | GRN Details

day, 00 month 0000
GRN Details - {{ $grn->grn_no }}
Edit Back to List
{{ $grn->grn_no ?? '-' }}
{{ $grn->grn_date ? \Carbon\Carbon::parse($grn->grn_date)->format('d M Y') : '-' }}
{{ $grn->order_no ?? '-' }}
{{ $grn->order_date ? \Carbon\Carbon::parse($grn->order_date)->format('d M Y') : '-' }}
{{ $grn->order_ref_no ?? '-' }}
{{ $grn->company_name ?? '-' }}
{{ $grn->company_gst ?? '-' }}
{{ $grn->company_address ?? '-' }}
{{ $grn->company_phone ?? '-' }}
{{ $grn->company_email ?? '-' }}

{{ $grn->quotation_no ?? '-' }}
{{ $grn->quotation_date ? \Carbon\Carbon::parse($grn->quotation_date)->format('d M Y') : '-' }}
{{ $grn->rfq_no ?? '-' }}
{{ $grn->rfq_date ? \Carbon\Carbon::parse($grn->rfq_date)->format('d M Y') : '-' }}
{{ $grn->part_no ?? '-' }}
{{ $grn->project_material_no ?? '-' }}
{{ $grn->drawing_no ?? '-' }}
{{ $grn->drawing_rev ?? '-' }}
{{ $grn->product_type ?? '-' }}
@if ($grn->challan_file) View Challan @else - @endif
{{ $grn->description ?? '-' }}

Product Details
@forelse ($grn->products as $product) @empty @endforelse
Sl No Description Qty Unit Date Supplier Remarks
{{ $product->sl_no }} {{ $product->description ?? '-' }} {{ number_format($product->quantity, 2) }} {{ $product->unit ?? '-' }} {{ $product->date ? \Carbon\Carbon::parse($product->date)->format('d M Y') : '-' }} {{ $product->supplier ?? '-' }} {{ $product->remarks ?? '-' }}
No Product Rows Found

@endsection