@extends('seller.layouts.app') @section('title') Product Details | Seller @endsection @section('content')
| Title | {{ $product->title }} |
|---|---|
| Category Name | {{ $product->category->name }} |
| Price | {{ $product->price }} |
| Selling Price | {{ $product->sale_price }} |
| Stock Quantity | {{ $product->quantity }} |
| Delivery Time | {{ $product->handling_time }} |
| Shipping Cost | {{ $product->shipping_cost }} |
| Total Orders | {{ $product->total_orders }} |
| Product Link | {{ route('product.details',$product->slug) }} |
| Short Description | {!! $product->short_description !!} |
| Long Description | {!! $product->long_description !!} |
| Created At | {{ Carbon\Carbon::parse($product->created_at)->format('d M,Y ') }}({{ $product->created_at->diffForHumans() }}) |
| Updated At | {{ Carbon\Carbon::parse($product->updated_at)->format('d M,Y ') }}({{ $product->updated_at->diffForHumans() }}) |