@extends('admin.layout.master') @section('title', 'Inspection Schedule List') @section('custom_style') @endsection @section('content') @include('inspection.flash-message')

{{ __('obs.inspection') }} {{ __('obs.schedule') }} {{ __('obs.list') }}

@include('inspection.includes.print_excel_button',['excel'=>false])
@foreach ($schedules as $key => $schedule) @endforeach
{{ __('obs.sl') }} {{ __('obs.inspector') }} {{ __('obs.date') }} {{ __('obs.start') }} {{ __('obs.time') }} {{ __('obs.branch') }} {{ __('obs.visit') }} {{ __('obs.type') }} {{ __('obs.action') }}
{{ $key + 1 }} {{ $schedule->admin->name ?? null }} {{ $schedule->date ? date('d-m-Y', strtotime($schedule->date)) : null }} {{ $schedule->start_time ? date('H:i A', strtotime($schedule->start_time)) : null }} {{ $schedule->branch->name ?? null }} {{ $schedule->visit_type->name ?? null }}
{{-- {{ $notifications->links() }} --}}
@endsection @section('script') @endsection