@php
$header_title = 'Aurobees | Subdcription';
$header_name = 'lob_subscription_management';
$page_name = 'lob_subscription';
@endphp
@extends('admin.admin_master')
@section('admin')
| User Name |
|
Lob Name |
|
| Start Date |
{{($data->start_at)?date('H:i A d-m-Y',strtotime($data->start_at)):'Pending'}} |
End Date |
{{($data->end_at)?date('H:i A d-m-Y',strtotime($data->end_at)):'Pending'}} |
| Status |
|
Country Code |
|
| Plan Name |
|
Plan Duration |
|
| Currency Code |
|
Rate |
0 |
| No. of User |
|
Total Rate |
0 |
|
0 |
Grand Amount |
0 |
@if(@$data->remarks)
| Remarks |
|
@endif
@if(!$data['SubscriptionAddons']->isEmpty()) @php $i=0;@endphp
Subscription Addons: |
@foreach ($data['SubscriptionAddons'] as $item )
@if($i%2==0)
@endif
|
|
@php $i++;@endphp
@endforeach
@endif
Checkout Details: |
@if($data['OrderMeta']) @php $i=0;@endphp
@foreach ($data['OrderMeta'] as $item )
@if($i%2==0)
@endif
|
@if($item->key=='acra_profile_copy' || $item->key=='tax_registration_document')
Link
@else
@endif
|
@php $i++;@endphp
@endforeach
@endif
@if($data['Transaction'])
Transaction Details: |
@foreach ($data['Transaction'] as $transaction)
| Transaction Id |
|
Status |
|
| Amount |
0 |
@endforeach
@endif
Back
@endsection