@extends('layouts.master') @section('content')
| Serial Number | {{ $laptop->serial_number }} |
|---|---|
| Model Name | {{ $laptop->model_name }} |
| Company Name | {{ $laptop->company_name }} |
| RAM | {{ $laptop->ram }} |
| Storage | {{ $laptop->storage }} |
| SSD/HDD | {{ ucfirst($laptop->ssd_hdd) }} |
| Processor | {{ $laptop->processor }} |
| Generation | {{ $laptop->generation }} |
| Purchase Date | {{ $laptop->purchase_date ? \Carbon\Carbon::parse($laptop->purchase_date)->format('Y-m-d') : 'N/A' }} |
| Purchase Amount | {{ $laptop->purchase_amount ? '₹' . number_format($laptop->purchase_amount, 2) : 'N/A' }} |
| Warranty Status | {{ ucfirst($laptop->warranty_status) }} |
| Warranty Expiry Date | {{ $laptop->warranty_expiry_date ? \Carbon\Carbon::parse($laptop->warranty_expiry_date)->format('Y-m-d') : 'N/A' }} |
| Asset Tag | {{ $laptop->asset_tag }} |
| Notes | {{ $laptop->notes }} |
| Purchase Invoice | @if($laptop->purchase_bill) Download Invoice @else No Invoice Available @endif |