@extends('layouts.master') @section('content')


Total Devices: {{ $devices->total() }}
Total Laptops: {{ $totalLaptops }}
Total Desktops: {{ $totalDesktops }}
Department: {{ $department }}
@if($devices->count() > 0) @foreach ($devices as $device) @endforeach
Assigned To (Employee) Serial Number Device Type Assign Date Actions
{{ $device->employee ? $device->employee->name : 'Unassigned' }} {{ $device->serial_number }} {{ ucfirst($device->device_type) }} {{ $device->assign_date ? \Carbon\Carbon::parse($device->assign_date)->format('Y-m-d') : 'N/A' }}
{{ $devices->links() }} @else

No devices found in the {{ $department }} department.

@endif @endsection