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

GRN Details - {{ $grn->grn_no }}

{{ now()->format('l') }}, {{ now()->format('d') }} {{ now()->format('F') }} {{ now()->format('Y') }}
{{ now()->format('h:i:s A') }}
GRN Number
{{ $grn->grn_no ?? '-' }}
GRN Date
{{ $grn->grn_date ? \Carbon\Carbon::parse($grn->grn_date)->format('d M Y') : '-' }}
Order Number
{{ $grn->order_no ?? '-' }}
Company
{{ $grn->company_name ?? '-' }}
Order & Company Details
Order Date
{{ $grn->order_date ? \Carbon\Carbon::parse($grn->order_date)->format('d M Y') : '-' }}
Reference No
{{ $grn->order_ref_no ?? '-' }}
GST No
{{ $grn->company_gst ?? '-' }}
Address
{{ $grn->company_address ?? '-' }}
Phone
{{ $grn->company_phone ?? '-' }}
Email
{{ $grn->company_email ?? '-' }}
Product Type
{{ $grn->product_type ?? '-' }}
Challan File
@if ($grn->challan_file) View Challan @else No challan uploaded @endif
Description
{{ $grn->description ?? '-' }}
Reference Information
Quotation No
{{ $grn->quotation_no ?? '-' }}
Quotation Date
{{ $grn->quotation_date ? \Carbon\Carbon::parse($grn->quotation_date)->format('d M Y') : '-' }}
RFQ No
{{ $grn->rfq_no ?? '-' }}
RFQ Date
{{ $grn->rfq_date ? \Carbon\Carbon::parse($grn->rfq_date)->format('d M Y') : '-' }}
Part No
{{ $grn->part_no ?? '-' }}
Project Material No
{{ $grn->project_material_no ?? '-' }}
Drawing No
{{ $grn->drawing_no ?? '-' }}
Drawing Revision
{{ $grn->drawing_rev ?? '-' }}
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
Edit GRN Back to List
@endsection