@extends('user.layouts.template') @section('styles') @endsection @section('content')
Subscription Management My Subscription

My plan

View Invoice
Plan {{ $data['current_plan_name'] }}
Price ${{ $data['current_plan_cost'] }}/{{ $data['current_plan_duration'] }}
Last Billing {{ $data['last_billing_date'] }}

Expiration {{ $data['remaining_days'] }} Days Left @if ($data['remaining_days'] <= 45) Upgrade @else Renew Plan @endif
Payment Status {{ $data['payment_status'] }}
Plan Start Date {{ $data['last_billing_date'] }}
@if (date('Y-m-d', strtotime(Auth::user()->valid_plan_date)) > date('Y-m-d'))
Plan End Date {{ $data['valid_plan_date'] }}
@elseif(date('Y-m-d', strtotime(Auth::user()->valid_plan_date)) < date('Y-m-d'))
Grace Period End Date {{ $data['grace_plan_date'] }}
@endif

Features

@foreach ($plan as $pn)
Current Plan

{{ $pn->plan_name }}

${{ $pn->monthly_offer_price }}/mo

  • {{ $pn->number_of_property }}
  • {{ $pn->number_of_team_members }}
  • {{ $pn->description }}
@endforeach {{--
POPULAR

Premium

$99 /mo

  • Unlimited
  • Unlimited
  • Advanced
--}}
@endsection