@extends('profile.index') @include('include.message') @section('profile-content') @if (count($payments))
@foreach ($payments as $key => $value) @endforeach
{{ __('ID') }} {{ __('Plan') }} {{ __('Coupon') }} {{ __('Amount') }} {{ __('Currency') }} {{ __('Type') }} {{ __('Gateway') }} {{ __('Transaction ID') }} {{ __('Status') }} {{ __('Transaction Date') }} {{ __('Invoice') }}
{{ $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 }}
{{ __('ID') }} {{ __('Plan') }} {{ __('Coupon') }} {{ __('Amount') }} {{ __('Currency') }} {{ __('Type') }} {{ __('Gateway') }} {{ __('Transaction ID') }} {{ __('Status') }} {{ __('Transaction Date') }} {{ __('Invoice') }}
@else

{{ __('Your payment history will appear here.') }}

@endif @endsection