@extends('frontend.layout.updated.master') @section('content')

My Profile

profile-img

{{Auth::user()->name}}

Current Subscriptions

@if (count($current_subscription) > 0) @foreach ($current_subscription as $index => $row ) @endforeach @else @endif
No Product List Start Date End Date Amount Paid
{{ $index +1 }} {{ $row->description }} {{date('d-m-Y',strtotime($row->subscription_start_date))}} {{date('d-m-Y',strtotime($row->subscription_end_date))}} {{$row->amount}} INR
No record found.

Past Subscriptions

@if (count($past_subscription) > 0) @foreach ($past_subscription as $index => $row ) @endforeach @else @endif
No Product List Start Date End Date Amount Paid
{{ $index +1 }} {{ $row->description }} {{$row->subscription_start_date}} {{$row->subscription_end_date}} {{$row->amount}} INR
No record found.
@endsection