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

Laptop Allocation History

@foreach($laptop->history as $history) @endforeach
Action Employee Date Notes
{{ ucfirst($history->action) }} {{ $history->employee->name }} {{ \Carbon\Carbon::parse($history->date)->format('Y-m-d') }} {{ $history->notes }}
Back to Laptops
@endsection