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

Machineries

Equipment and hourly rates
New Machinery
{{-- Filters --}}
@php $sort = request('sort','created_at'); @endphp
Reset {{-- FRONTEND EXPORT BUTTONS --}}
@if ($machineries->total()) Showing {{ $machineries->firstItem() }}–{{ $machineries->lastItem() }} of {{ $machineries->total() }} results @endif
{{-- Table --}}
@forelse($machineries as $m) @empty @endforelse
# Name Plate Number Type Company Hourly Rate Actions
{{ $m->id }} {{ $m->name }} {{ $m->plate_number ?: '—' }} {{ $m->type ?: '—' }} {{ $m->company->name ?? '—' }} {{ $m->hourly_rate !== null ? number_format($m->hourly_rate, 2) : '—' }}
@csrf @method('DELETE')
No machineries found with the selected filters.
{{ $machineries->links() }}
{{-- ================= FRONTEND EXPORT SCRIPTS ================= --}} {{-- SheetJS (Excel) --}} {{-- jsPDF + AutoTable (PDF) --}} @endsection