ID |
{{ $product->id }} |
Name |
{{ $product->name }} |
Brand Name |
{{ !empty($product->brand->name) ? $product->brand->name : '' }} |
Category Name |
{{ !empty($product->category->name) ? $product->category->name : '' }} |
Is Sold |
{{ ($product->is_sold == 1) ? 'Yes':'No' }} |
Is Active |
{{ ($product->is_active == 1) ? 'Yes':'No' }} |
Is Featured |
{{ ($product->is_featured == 1) ? 'Yes':'No' }} |
Attributes Name |
@foreach($product->attributes as $attribute)
{{ $attribute->name}}
@endforeach
|
Created At |
{{ $product->created_at }} |
Updated At |
{{ $product->updated_at }} |
Is Active |
{{ ($product->is_active == 1) ? 'Yes':'No' }} |
{{-- --}}
{{-- Images | --}}
{{-- --}}
{{-- @foreach($product->images as $image)--}}
{{-- --}}
{{-- @endforeach--}}
{{-- | --}}
{{--
--}}
Images |
@foreach($product->images as $key => $image)
@endforeach
Previous
Next
|