@extends('layouts.admin') @section('breadcrumb', 'admin.appointment') @section('title', 'Appointment') @section('content')
@foreach ($appointment as $item) @endforeach
No Date Time User Status
{{ $loop->index + 1 }} {{ date('d-m-Y', strtotime(substr($item->date, 0, 10))) }} {{ date('H:i', strtotime($item->time_start)) }} - {{ date('H:i', strtotime($item->time_end)) }} {{ $item->user->name }} {{ $item->status }} @if ($item->status === 'WAITING') Approve Reject @endif
@endsection @section('script') @endsection