@extends('layout.guest')
@section('title')
GGP Directory Product List
@endsection
@section('content')
@include('directory.partials.header', ['title' => $title, 'not_product_group' => true])
{{ $company->company_name }}
| Listing No. |
Certified Date |
Expiry Date |
Product Name |
Brand |
Model |
Action |
Loading...
{{-- @foreach ($products as $product)
@php
$name = $product->itemDetails->filter(function ($itemDetail) {
return $itemDetail->formDetail->name == 'Product Name' || $itemDetail->formDetail->name == 'Service Name';
})->first()->value ?? '-';
@endphp
| {{ $product->application->application_no }} |
{{ $product->application->myhijau_cert_date ?? '-' }} |
{{ $product->application->myhijau_exp_date ?? '-' }} |
{{ $name }} |
View |
@endforeach --}}
|
@endsection
@section('scripts')
@endsection