@extends('provider.provider') @section('content')
{{ __('Plan & Billings') }}
{{ __('Current Plan') }}
@if(isset($data['standardplan']))
{{$data['standardplan']->package_title}}

{{$data['standardplan']->description}}

{{ __('Renew') }} {{ __('Date:') }} {{$data['standardplan']->end_date}}

{{$data['currency']}}{{$data['standardplan']->price}}

@else

{{ __('You have not Subscribed any Plan yet..') }}

@endif
@if(isset($data['topupplan']))
{{ __('Topup') }}
{{$data['topupplan']->package_title}}

{{$data['topupplan']->description}}

{{$data['currency']}}{{$data['topupplan']->price}}

{{$data['topupplan']->next_payment_date ?? ''}}

@endif
{{ __('Payment') }}
{{ __('Last Payment') }}

{{$data['standardplan']->payment_date ?? '-'}}

{{$data['standardplan']->activestatus?? ''}}
{{ __('Next Payment') }}

{{$data['standardplan']->next_payment_date ?? ''}}

{{ __('S.No') }} {{ __('Payout Date') }} {{ __('Subscription_Type')}} {{ __('Plan Name') }} {{ __('Amount') }} {{ __('Payment Status') }} {{ __('Status') }} {{ __('Action') }}

ID

Name

Email

Role

1

John Doe

johndoe@example.com

Admin

2

Jane Smith

janesmith@example.com

Manager

3

Robert Brown

robertbrown@example.com

User

3

Robert Brown

robertbrown@example.com

User

3

Robert Brown

robertbrown@example.com

User

3

Robert Brown

robertbrown@example.com

User

3

Robert Brown

robertbrown@example.com

User

4

Emily Davis

emilydavis@example.com

Customer

@endsection