@extends('layout.app', ['title' => 'Thanh toán | Tutor']) @push('style') @vite(['resources/css/layout/banner_main.css', 'resources/css/payment.css', 'resources/css/landing.css', 'resources/css/students/student.css']) @endpush @php @endphp @section('content')
@include('layout.landing_banner', [ 'title' => 'thanh toán', 'description' => 'Chi tiết thông tin thanh toán của bạn!', ])
@csrf @if (session()->has('error'))
{{ session('error') }}
@endif @if (session()->has('message'))
{{ session('message') }}
@endif
Hỗ trợ thanh toán nhanh
Chọn phương thức thanh toán

Sản phẩm đã chọn

@if ($choseTutorData['is_teach_online'] === '0')
Địa chỉ của bạn: {{ $choseTutorData['address'] }}
@endif
{{ $tutor->user->fullname }}
{{ $choseTutorData['is_teach_online'] === '0' ? 'Gia sư tại nhà' : 'Gia sư Online' }}
{{ getTutorInfoSkill($choseTutorData['tutor_info']) }}
Khóa học {{ $package_time->time }} tháng
Thời gian bắt đầu học:
Từ {{ getFormatDate($choseTutorData['start_date']) }}

{{ isset($choseTutorData['fee']) && !is_null($choseTutorData['fee']) ? number_format($choseTutorData['fee'], 0, '.', ',') . ' Vnd' : '' }}

Số tiền cần thanh toán

@endsection @push('script') @vite(['resources/js/landing.js', 'resources/js/payment.js', 'resources/js/students.js']) @endpush