@extends('front.layouts.main')
@section('header_style')
Recharge International
@endsection
@section('content')
| Name |
Quantity |
Price |
@foreach($data->orderdetails as $item)
| {{ $item->product->name }}-{{ $item->product->brand->brand }} |
{{ $item->quantity }} |
{{ $item->quantity * $item->product->price}} BDT. |
@endforeach
| Delivery Charge |
{{ $data->delivery_charge }} BDT. |
| Discount |
{{ $data->disPercent }} BDT. |
| Total |
{{ $data->total }} BDT. |
| Due |
{{ $data->due }} BDT. |
| Previous Due |
{{ $due }} BDT. |
| Total |
{{ $data->total + $due }} BDT. |
| Paid |
{{ $data->total -$data->due }} BDT. |
| Payable |
{{ $data->payable }} BDT. |
| return |
{{ $data->return }} BDT. |
| Customer Name |
{{ $data->customer->name }} |
| Customer Email |
{{ $data->customer->email }} |
| Customer Phone |
{{ $data->customer->phone }} |
| Help Desk |
3889883882/ 34786783388 |
Powered by: Ruby Pos
@endsection