@extends('layouts.user') @section('head') @endsection @section('content')

{{__("My Current Plan")}}

{{ __("Ready to jump back in?") }}
@include('admin.message')

{{__("My Current Plan")}}

@php $user_plans = $user->userPlans; @endphp @if($user_plans && count($user_plans) > 0) @foreach($user_plans as $user_plan) @endforeach @else @endif
{{__("Plan ID")}} {{__("Plan Name")}} {{__("Expiry")}} {{__("Used/Total")}} {{__("Price")}} {{__("Status")}}
#{{$user_plan->plan_id}} {{$user_plan->plan->title ?? ''}} {{display_datetime($user_plan->end_date)}} @if(!$user_plan->max_service) {{__("Unlimited")}} @else {{$user_plan->used}}/{{$user_plan->max_service}} @endif {{format_money($user_plan->price)}} @if($user_plan->is_valid) {{__('Active')}} @else
{{__('Expired')}}
@endif
{{__("No Items")}}
@endsection @section('footer') @endsection