@extends('admin.layout.app') @section('body')

{{ $machinery->name }}

Type: {{ $machinery->type }}

Company: {{ $machinery->company->name ?? '—' }}

Hourly Rate: {{ $machinery->hourly_rate ? number_format($machinery->hourly_rate,2) : '-' }}

Usage Records

@if($machinery->usages->isEmpty())

No usage records.

@else @endif @endsection