@extends('frontend.layout.updated.master')
@section('content')
Current Subscriptions
No |
Product List |
Start Date |
End Date |
Amount Paid |
@if (count($current_subscription) > 0)
@foreach ($current_subscription as $index => $row )
{{ $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 |
@endforeach
@else
No record found. |
@endif
Past Subscriptions
No |
Product List |
Start Date |
End Date |
Amount Paid |
@if (count($past_subscription) > 0)
@foreach ($past_subscription as $index => $row )
{{ $index +1 }} |
{{ $row->description }} |
{{$row->subscription_start_date}} |
{{$row->subscription_end_date}} |
{{$row->amount}} INR |
@endforeach
@else
No record found. |
@endif
@endsection