Product #{{ $product->id }}
- ID:
- {{ $product->id }}
- Type:
- {{ $product->type }}
- Name:
- {{ $product->name }}
- Brand:
- {{ $product->brand ?? '-' }}
- Model:
- {{ $product->model ?? '-' }}
- IMEI/SN:
- {{ $product->imei_or_sn }}
- Condition:
- {{ $product->condition }}
- Color:
- {{ $product->color }}
- GB:
- {{ $product->gb }}
- Stock:
- {{ $product->stock }}
- Buy Price:
- {{ $product->buy_price }}
- Created At:
- {{ $product->created_at }}
- Updated At:
- {{ $product->updated_at }}
Customer Information
@if ($product->Customer)- Name:
- {{ $product->Customer->name }}
- Number:
- {{ $product->Customer->number }}
- CPR:
- {{ $product->Customer->cpr }}
- Address:
- {{ $product->Customer->address }}
No customer information available.
@endif