@extends('inventory.layout') @section('title', 'Quotation Status') @section('content') @push('head') @endpush
@foreach($product as $pro) @foreach($pro->productdetail as $p) @endforeach @endforeach
{{ __('Image')}} {{ __('Product Name')}} {{ __('Product Code')}} {{ __('Brand')}}
@if(isset($p->image)) @else @endif {{ isset($p->name) ? $p->name :'' }} {{ isset($p->product_code) ? $p->product_code :'' }} {{ isset($p->brand) ? $p->brand :'' }}

@push('script') @endpush @endsection