@extends('layouts.panel') @section('title', app(\App\Services\TitleService::class)->generate()) @push('styles') @endpush @section('content')

مشاهده استعلام قیمت

شماره استعلام: #{{ $session->id }}

اطلاعات پایه

نام محصول
{{ $session->product_name }}
مقدار
{{ $session->formatted_quantity }}
تاریخ ثبت
{{ jdate($session->created_at)->format('Y/m/d H:i') }}

پیشنهادهای تامین‌کنندگان

@foreach(($offers ?? $session->offers ?? []) as $offer) @endforeach @if(empty($offers ?? $session->offers) || count($offers ?? $session->offers ?? []) === 0) @endif
تامین‌کننده قیمت رسمی قیمت غیررسمی گرید برند کشور بسته‌بندی یادداشت
{{ !empty($offer['supplier_name']) ? $offer['supplier_name'] : 'نامشخص' }} {{ isset($offer['official_price']) && $offer['official_price'] !== null ? number_format($offer['official_price']) . ' تومان' : '-' }} {{ isset($offer['unofficial_price']) && $offer['unofficial_price'] !== null ? number_format($offer['unofficial_price']) . ' تومان' : '-' }} {{ $offer['grade'] ?? '-' }} {{ $offer['brand'] ?? '-' }} {{ $offer['country'] ?? '-' }} {{ $offer['packaging'] ?? '-' }} {{ $offer['notes'] ?? '-' }}
هیچ پیشنهادی ثبت نشده است.
@endsection