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

{{ __('Product Information') }}

{{ __('About Product') }}

{{ __('Brand') }}

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

{{ __('Model') }}

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

{{ __('Warranty') }}

{{ $products->warranty_left }} {{ __('days') }}

{{ __('Color') }}

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

{{ __('Description') }}

    {{ $products->description }}
@endsection @push('style') @endpush