@extends('layouts.frontend') @section('content')
@if ($message = Session::get('success'))
{{ $message }}
@endif @if ($message = Session::get('error'))
{{ $message }}
@endif
@foreach($membership_plan as $plan) @endforeach
Subscription Status Next Payment Total  
#000{{$plan->subscription_id}} @if(strtotime(date('d-m-Y')) <= strtotime(date('d-m-Y', strtotime($plan->expire_at))) ) @if($plan->is_active == 1) Active @else Inactive @endif @else Inactive @endif {{date('M d, Y', strtotime($plan->expire_at))}} ₹ {{number_format($plan->amount,2)}} / {{$plan->duration}} {{$plan->duration_name}} View
@endsection