@extends('layouts.admin') @section('title') Admin | Product Details @endsection @section('content')

Product/Details

Product Details
  • Title: {{ $product->name }}
  • Price: {{config('app.currency_sign')}} {{ $product->price }}
  • Description: {!! $product->description !!}
  • Image: @if(!empty($product->image_url) )
    {{ $product->name }}
    @endif
  • Gallery images: @if($product->gallery_images)
    @foreach($product->gallery_images as $img) @endforeach
    @endif
  • Features: {!! $product->features ?? '' !!}
  • Benefits: {!! $product->benefits ?? '' !!}
  • Category: {{ $product->category->name ?? 'Uncategorized' }}
  • Status: {{ $product->is_active ? 'Active' : 'Inactive' }}
  • Sort Order: {{ $product->sort_order }}
  • Meta Title: {{ $product->meta_title }}
  • Meta Description: {!! $product->meta_description !!}
  • Meta Keywords: {{ $product->meta_keywords }}
  • Created by: {{ $product->creator->full_name ?? 'System' }}
  • Updated by: {{ $product->updater->full_name ?? '—' }}
  • Created at: {{ $product->created_at->format('M d, Y H:i') }}
  • Last updated: {{ $product->updated_at->format('M d, Y H:i') }}
@endsection