@extends('base::layouts.master') @section('title',__('Payment information')) @section('content')

@lang('Payment information')

{{--
--}} {{-- --}} {{-- --}} {{--
--}}
@lang('Invoice')
{{AppHelper::settings()->getAttribute('app_name')}}
{{AppHelper::settings()->getAttribute('app_email')}}
{{AppHelper::settings()->getAttribute('app_address')}}
@lang('Client Details')
{{$payment->fullName()}}
{{$payment->getAttribute('email')}}
{{$payment->getAttribute('address')}}
Receipt
#{{$payment->getAttribute('transaction_id')}}
{{$payment->getAttribute('created_at')->format('d/m/Y')}}
@foreach($payment->order->products as $product) @endforeach
DESCRIPTION QTY PRICE SUBTOTAL
{{$product->title()}}
{{$product->category->title()}}
{{$product->pivot->getAttribute('count')}} {{$product->pivot->getAttribute('price')}} ₼ {{$product->pivot->getAttribute('total')}} ₼
@lang('Total paid')
{{optional($payment->order)->getAttribute('grand_total')}} ₼
@endsection