@extends('layouts.admin')
@section('content')
appointments
@if(count($viewData['appointments']) > 0)
User
|
Date
|
Time
|
Attended
|
Edit
|
Delete
|
@foreach($viewData['appointments'] as $appointment)
{{ $appointment->user->name }}
|
{{ $appointment->input_date }}
|
{{ $appointment->radio_selection }}
|
{{ $appointment->user_id }}
|
|
|
@endforeach
@else
No appointments available.
@endif
@endsection