@extends('web.layouts.master') @section('content')

{{ __('Product Information') }}

{{ __('About Product') }}

{{ __('Brand') }}

{{ optional($product->brand)->name ?? 'N/A' }}

{{ __('Model') }}

{{ $product->model ?? 'N/A' }}

{{ __('Warranty') }}

{{ $product->warranty_left ? $product->warranty_left . ' days' : 'N/A' }}

{{ __('Color') }}

{{ $color->name ?? '' }} @if ($product->color_code) @endif

{{ __('Description') }}

    {{ $product->description }}
@if ($relatedProducts->count() > 0)

{{__('Related Items')}}

@foreach ($relatedProducts as $relatedProduct)
@endforeach
@endif @auth {{-- message modal --}} @endauth @endsection @push('script') @endpush