@extends('layouts.instructor') @section('breadcrumb')

{{__('Consultation')}}

@endsection @section('content')
{{ __('All Booking Request') }}
@forelse($bookingHistories as $bookingHistory) @empty @endforelse
{{__('Student Name')}} {{__('Date')}} {{__('Time')}} {{__('Duration')}} {{__('Action')}}
img
{{ @$bookingHistory->user->student->name }}
{{ $bookingHistory->date }} {{ $bookingHistory->time }} {{ $bookingHistory->duration }}
@if(count($bookingHistories) < 1)
{{ __('No Record Found') }}
@endif
@endsection @push('script') @endpush