@extends('adminlte::page') @section('title', 'All Appointments') @section('content_header')

My Bookings

@stop @section('content')
{{--

Users Management

--}} @can('user-create') @endcan
@if (session()->has('success'))
{!! session()->get('success') !!}
@endif
@foreach ($bookings as $booking) @endforeach
# Name Email 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 Email Phone Status Action
@stop @section('css') @stop @section('js') {{-- hide notifcation --}} @stop