@extends('backend.app') @section('title', 'Products Details') @section('content') {{-- PAGE-HEADER --}}
{{-- Products Image --}}
@if ($data->image) {{ $data->title ?? 'N/A' }} @endif
{{-- Products Content --}}
{{-- Name --}}

{{ $data->name ?? 'N/A' }}

{{-- Author & Meta --}}
Product Created By Admin
{{ !is_null($data->created_at) ? $data->created_at->format('d M Y') : 'N/A' }}
@if ($data->status == 'active') Active @else Inactive @endif

Price: {{ $data->price ?? 'N/A' }}

Discount Price: {{ $data->discount_price ?? 'N/A' }}

Stock Quantity: {{ $data->stock_quantity ?? 'N/A' }}

{{-- Description --}}
Description: {!! $data->description ?? 'N/A' !!}

{{-- Back Button --}}
@endsection