@extends('layouts.master') @section('content')
Total Laptops: {{ $totalLaptops }}
Total Dell Laptops: {{ $totalDellLaptops }}
Total Lenovo Laptops: {{ $totalLenovoLaptops }}

Assigned Laptops

Total Laptops: {{ $totalLaptops }}
Total Dell Laptops: {{ $totalDellLaptops }}
Total Lenovo Laptops: {{ $totalLenovoLaptops }}
@if (session('success'))
{{ session('success') }}
@endif @foreach ($laptops as $laptop) @endforeach
Assigned To (Employee) Serial Number Device Type Assign Date Actions
{{ $laptop->employee ? $laptop->employee->name : 'Unassigned' }} {{ $laptop->serial_number }} {{ ucfirst($laptop->device_type) }} {{ $laptop->assign_date ? \Carbon\Carbon::parse($laptop->assign_date)->format('Y-m-d') : 'N/A' }}
{{ $laptops->links() }}
@foreach ($laptops as $laptop) @include('pages.laptop_tracker.repairs.repairModel') @include('pages.laptop_tracker.repairs.repairHistoryModel') @include('pages.laptop_tracker.repairs.editRepairModel') @include('pages.laptop_tracker.repairs.deleteRepairModel') {{-- accessories Models --}} @include('pages.laptop_tracker.accessories.viewModel') @include('pages.laptop_tracker.accessories.addModel') @include('pages.laptop_tracker.accessories.deleteModel') @include('pages.laptop_tracker.accessories.editModel') @endforeach @endsection