@extends('profile.index')
@include('include.message')
@section('profile-content')
@if (count($payments))
{{ __('ID') }} |
{{ __('Plan') }} |
{{ __('Coupon') }} |
{{ __('Amount') }} |
{{ __('Currency') }} |
{{ __('Type') }} |
{{ __('Gateway') }} |
{{ __('Transaction ID') }} |
{{ __('Status') }} |
{{ __('Transaction Date') }} |
{{ __('Invoice') }} |
@foreach ($payments as $key => $value)
{{ $value->id }} |
{{ $value->plan->name }} |
{{ $value->coupon ? $value->coupon->name : '-' }} |
{{ $value->amount }} |
{{ $value->currency }} |
{{ $value->interval }} |
{{ $value->gateway }} |
{{ $value->payment_id }} |
{{ $value->status }} |
{{ $value->created_at }} |
|
@endforeach
{{ __('ID') }} |
{{ __('Plan') }} |
{{ __('Coupon') }} |
{{ __('Amount') }} |
{{ __('Currency') }} |
{{ __('Type') }} |
{{ __('Gateway') }} |
{{ __('Transaction ID') }} |
{{ __('Status') }} |
{{ __('Transaction Date') }} |
{{ __('Invoice') }} |
@else
{{ __('Your payment history will appear here.') }}
@endif
@endsection