@extends('adminlte::page') @section('title', 'All Appointments') @section('content_header')
| # | Name | Phone | Time | Date | Employee | Status | Action | |
|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $booking->first_name }} {{ $booking->last_name }} | {{ $booking->email }} | {{ $booking->phone }} | @if($booking->booking_time) {{ $booking->booking_time }} @else NA @endif | {{ \Carbon\Carbon::parse($booking->booking_date)->format('d, M Y') }} | {{ $booking->employee_name }} |
@if ($booking->payment_status == true)
Paid
@else
Pending
@endif
|
View |
| # | Name | Phone | Status | Action |