@extends('dash.layouts.app') @section('title') Client Appointments @endsection @section('css') @endsection @section('content')

Client Appoinments

@foreach($appointments as $key => $appointment) @endforeach
# Client Name Email Contacts Date Status Action
{{$key+1}} {{$appointment->name}} {{$appointment->email}} {{$appointment->phone}} {{$appointment->date}} at {{$appointment->time}} @if($appointment->status==0)
Pending
@elseif($appointment->status==1)
In Process
@elseif($appointment->status==2)
Hold
@elseif($appointment->status==3)
Cancel
@elseif($appointment->status==4)
Completed
@else N/A @endif
@method('PUT') @csrf
{{-- --}}
@endsection @section('js') @endsection