@extends('layouts.app') @section('title', 'View Device - ISP ERP System') @section('content')
Device Details

Device Type: {{ $device->device_type }}

Serial Number: {{ $device->serial_number ?? 'N/A' }}

Assigned To: {{ $device->customer->customer_name ?? 'Not Assigned' }}

Assigned Date: {{ $device->assigned_date ? $device->assigned_date->format('M d, Y') : 'N/A' }}

Status: {{ ucfirst($device->status) }}

Edit Back
@endsection