@extends('layouts.user') @section('content')
{{__("Plan ID")}} | {{__("Plan Name")}} | {{__("Expiry")}} | {{__("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->status==0)
{{__('Pending')}}
@elseif($user_plan->status==2)
{{__('Cancel')}}
@elseif($user_plan->is_valid)
{{__('Active')}}
@else
{{__('Expired')}}
@endif
|
{{__("No Items")}} |