@extends('layouts.default') @push('title', get_phrase('Booking Invoice ') . $invoice) @section('content')
@include('frontend.default.student.left_sidebar')

{{ get_phrase('Invoice') }} {{ $invoice }}

{{ get_phrase('Date ') }} {{ date('d-M-Y', $booking->start_time) }}

system logo
{{ get_phrase('Subject') }} {{ get_phrase('Tutor') }} {{ get_phrase('Time') }} {{ get_phrase('Method') }} {{ get_phrase('Price') }}
{{ $booking->booking_to_schedule->schedule_to_tutorSubjects->name }} {{ $booking->booking_to_tutor->name }} {{ date('d-M-Y', $booking->start_time) }} {{ date('h:i a', $booking->start_time) . ' - ' . date('h:i a', $booking->end_time) }} {{ get_phrase('Stripe') }} {{ currency($booking->booking_to_schedule->schedule_to_tutorCanteach->price, 2) }}
{{ get_phrase('Billed to :') }} {{ $booking->booking_to_student->name }} {{ get_phrase('Total : ') }} {{ currency($booking->booking_to_schedule->schedule_to_tutorCanteach->price, 2) }}
@endsection @push('js') @endpush