@extends('layout.master') @push('plugin-styles') @endpush @section('content')

Schedule Maintenance Report List

@if($schedules->isEmpty())
No schedule maintenance records found.
@else
@foreach($schedules as $schedule) @endforeach
Crane Schedule Type Date Action
{{ $schedule->crane_id}} {{ ucfirst($schedule->schedule_type) }} {{ $schedule->created_at->format('Y-m-d') }} View Report
@endif
@endsection