@extends('layouts.master') @section('title') Inquiry Detail @endsection @section('page-title') Inquiry Detail @endsection @section('body')
@endsection @section('content')
| Inquiry No | Inquiry Date | Project Name | Project Completion Date | Sales Person Name |
|---|---|---|---|---|
| {{ $inquiry->inquiry_prefix }}/{{ $inquiry->inquiry_financial_year }}/{{ $inquiry->inquiry_number }} | {{ \Carbon\Carbon::parse($inquiry->inquiry_date)->format('d/m/Y') ?? '' }} | {{ $inquiry->inquiry_project_name ?? '' }} | {{ \Carbon\Carbon::parse($inquiry->inquiry_project_completion_date)->format('M-Y') ?? '' }} | {{ $inquiry->employee_name ?? '' }} |
| Customer Name | Customer Phone No | Customer Email | Site Address | Customer Address |
|---|---|---|---|---|
| {{ $inquiry->customer->customer_name ?? '' }} | {{ $inquiry->customer->customer_phone_no_1 ?? '' }} | {{ $inquiry->customer->customer_email ?? ''}} | {{ $inquiry->customer_site_address ?? ''}} | {{ $inquiry->customer->customer_address ?? ''}} |
| Architect | Interior | PMC | MEP & Consultant | Source Of Inquiry |
|---|---|---|---|---|
| {{ $inquiry->architect_name ?? '' }} | {{ $inquiry->interior_name ?? '' }} | {{ $inquiry->pmc_name ?? ''}} | {{ $inquiry->consultant_name ?? ''}} | {{ $inquiry->inquiry_source_name ?? '' }} ({{ $inquiry->inquiry_source_master_name ?? '' }}) |
| Application | Product Type | Product Brand | Qty | UOM | Inquiry Description |
|---|---|---|---|---|---|
| {{ $inquiry->inquiry_application ?? ''}} | {{ $inquiry->inquiry_product_category_name ?? ''}} | {{ $inquiry->inquiry_product_brand_name ?? ''}} | {{ $inquiry->inquiry_qty ?? ''}} | {{ $inquiry->inquiry_uom ?? ''}} | {{ $inquiry->inquiry_description ?? ''}} |
| No. | Follow Up Date | Follow Up Note | Sales Person |
|---|---|---|---|
| {{ $i }} | {{ \Carbon\Carbon::parse($inquiryFollowUp->inquiry_follow_up_date)->format('d/m/Y') ?? '' }} | {{ $inquiryFollowUp->inquiry_follow_up_note ?? ''}} | {{ $inquiryFollowUp->salesPerson->employee_first_name ?? ''}} {{ $inquiryFollowUp->salesPerson->employee_last_name ?? ''}} |