@extends('admin.layout.app') @section('content')
@php $i=1; @endphp @foreach($appointments as $appointment) @if($appointment->status == "completed") @elseif($appointment->status == "pending") @else @endif @endforeach
ID Name Service Time Date Status Actions
{{ $i++ }} {{ $appointment->f_name }} {{ $appointment->service->title }} {{ \Carbon\Carbon::parse($appointment->time)->format('h:i A') }} {{ \Carbon\Carbon::parse($appointment->date)->format('d M') }}CompletedPendingMissed
{{ $appointments->links() }}
@endsection @section('script') @endsection