@extends('layouts.master') @section('title') {{ __('sentence.All Patients') }} @endsection @section('content')
{{ __('sentence.All Appointments') }}
@foreach($appointments as $appointment) @endforeach
ID {{ __('sentence.Patient Name') }} {{ __('sentence.Schedule Info') }} {{ __('sentence.Status') }} {{ __('sentence.Created at') }} {{ __('sentence.Actions') }}
{{ $appointment->id }} {{ $appointment->User->name }} @if($appointment->visited == 0) @elseif($appointment->visited == 1) @else @endif {{ $appointment->created_at->format('d M Y H:i') }}
{{ $appointments->links() }}
@endsection @section('header') @endsection @section('footer') @endsection