@extends('layouts.app') @section('title', 'Printers') @section('header_title', 'Hardware Management') @push('styles') @endpush @section('content')
| Printer Name | Branch Location | SUB-LOCATION | Operating Cost | Hardware Health | Status | Actions |
|---|---|---|---|---|---|---|
|
{{ $printer->printer_name }}
@if($printer->serial_number)
SN: {{ $printer->serial_number }}
@else
No Serial Linked
@endif
{{ $printer->ip_address ?? 'USB / Local' }}
|
{{ $printer->location->name ?? 'Unassigned' }} | @if($printer->subLocation) {{ $printer->subLocation->name }} @else Unassigned @endif |
Rs. {{ number_format($printer->cost_per_bw_page * $printer->bw_pages + $printer->cost_per_color_page * $printer->color_pages, 2) }}
B&W: {{ $printer->total_bw_pages }} | Color: {{ $printer->total_color_pages }}
|
{{ $printer->is_active ? 'Active' : 'Offline' }} | ||