|
{{ trans('global.product.fields.name_en') }}
|
{{ $product->name_en ?? '' }}
|
|
{{ trans('global.product.fields.name_en') }}
|
{{ $product->name_mm ?? '' }}
|
|
Category
|
{{ $product->category->name_en ?? '' }}
|
|
{{ trans('global.product.fields.brand_status') }}
|
{{ !empty($product->brand_status) ? $product->brand_status == 1 ? "OLD" : "NEW" : '-' ?? '' }}
|
|
PreOrder
|
{{ !empty($product->preorder) ? $product->preorder == 1 ? "No" : "Yes" : '-' ?? '' }}
|
|
{{ trans('global.product.fields.description_en') }}
|
{{-- {{ $product->description_en ?? '' }} --}}
{!! $product->description_en??'' !!}
|
|
{{ trans('global.product.fields.description_mm') }}
|
{{-- {{ $product->description_mm ?? '' }} --}}
{!! $product->description_mm??'' !!}
|
|
{{ trans('global.product.fields.status') }}
|
{{ !empty($product->status) ? $product->status == 1 ? "Stock In" : "Out of Stock" : '-' ?? '' }}
|
|
{{ trans('global.product.fields.slug') }}
|
{{ $product->slug ?? '' }}
|
@if ($product->brand_status == 2)
|
{{ trans('global.product.fields.slogan') }}
|
{{ $product->slogan ?? '-' }}
|
|
{{ trans('global.product.fields.new_model_title1') }}
|
{{ $product->new_model_title1 ?? '-' }}
|
|
{{ trans('global.product.fields.new_model_body1') }}
|
{!! $product->new_model_body1 ?? '-' !!}
|
|
{{ trans('global.product.fields.new_model_summary1') }}
|
{!! $product->new_model_summary1 ?? '-' !!}
|
|
New Product 1
|
@if (isset($product->products1_images) && File::exists($product->products1_images->getUrl()))
{{-- @if($product->products1_images) --}}
{{ trans('global.view_file') }}
@endif
|
|
{{ trans('global.product.fields.new_model_title2') }}
|
{{ $product->new_model_title2 ?? '-' }}
|
|
{{ trans('global.product.fields.new_model_body2') }}
|
{!! $product->new_model_body2 ?? '-' !!}
|
|
{{ trans('global.product.fields.new_model_summary2') }}
|
{!! $product->new_model_summary2 ?? '-' !!}
|
|
New Product 2
|
@if (isset($product->products2_images) && File::exists($product->products2_images->getUrl()))
{{-- @if($product->products2_images) --}}
{{ trans('global.view_file') }}
@endif
|
|
{{ trans('global.product.fields.new_model_title3') }}
|
{{ $product->new_model_title3 ?? '-' }}
|
|
{{ trans('global.product.fields.new_model_body3') }}
|
{!! $product->new_model_body3 ?? '-' !!}
|
|
{{ trans('global.product.fields.new_model_summary3') }}
|
{!! $product->new_model_summary3 ?? '-' !!}
|
|
New Product 3
|
@if (isset($product->products3_images) && File::exists($product->products3_images->getUrl()))
{{-- @if($product->products3_images) --}}
{{ trans('global.view_file') }}
@endif
|
@endif