@extends('layout.app')
@section('_style')
@endsection
@section('content')
ĐƠN HÀNG NẠP THẺ
|
Tên khách hàng: {{ @$order->customer->full_name }}
|
Người lên đơn: {{ @$order->user->full_name }}
|
|
Địa chỉ: {{ @$order->customer->address }}
|
Phòng ban:
|
|
Điện thoại: {{ @$order->customer->phone }} -
|
Ngày tạo đơn: {{ date('d-m-Y', strtotime($order->created_at)) }}
|
|
Người nhận: {{ @$order->customer->full_name }} - Điện thoại:
{{ @$order->customer->phone }}
|
Phương thức thanh toán: {{@$order->name_payment_type}}
|
| STT |
Gói nạp |
Số lượng |
Đơn giá |
VAT (%) |
CK (%) |
CK (đ) |
Thành tiền |
| 1 |
{{ @$order->package->name }}
|
1 |
{{ number_format(@$order->order_price) }} |
0 |
0 |
0 |
{{ number_format(@$order->order_price) }} |
| Khuyến mại (voucher) |
0 |
| Tổng cộng |
{{ number_format($order->order_price) }} |
Thanh toán
|
|
| Doanh số: |
{{ number_format($order->order_price) }} |
| Đã thanh toán: |
{{ number_format($order->gross_revenue) }} |
| Còn lại: |
{{ number_format($order->order_price - $order->gross_revenue) }} |
@include('payment_wallet.payment-history')
@include('payment_wallet.modal')
@endsection
@section('_script')
@endsection