@extends($active_theme) @section('title') {{__('user.Purchase History')}} @endsection @section('frontend-content')
@include('user.inc.profile_header')
@include('user.inc.sideber')
@foreach ($histories as $index => $history) @endforeach
SN Plan Expiration Expired Date Status Payment Action
{{ ++$index }} {{ $history->plan_name }} {{ $history->expiration }} {{ $history->expiration_date }} @if ($history->status == 'active') {{__('user.Active')}} @elseif ($history->status == 'pending') {{__('user.Pending')}} @elseif ($history->status == 'expired') {{__('user.Expired')}} @endif @if ($history->payment_status == 'success') {{__('user.Success')}} @else {{__('user.Pending')}} @endif
@endsection