@extends('panel.layout.app') @section('title', __('Bank Transactions')) @section('content') @php $currencySymbol = currency()->symbol; @endphp
{{ date('j.n.Y', strtotime($order->created_at)) }} {{ date('H:i:s', strtotime($order->created_at)) }}
{{ __('User:') }} {{ $order->user->name }}
{{ __('Email:') }} {{ $order->user->email }}
@endif @if ($order->plan){{ __('Plan name:') }} {{ $order->plan->name }}
{{ __('Plan price:') }} {{ $currencySymbol }}{{ $order->plan->price }}
@endif{{ __('Tax Rate:') }} {{ $order->tax_rate }}%
{{ __('Tax:') }} {{ $currencySymbol }}{{ $order->tax_value }}
{{ __('Total:') }} {{ $currencySymbol }}{{ $order->price }}