Membership Plans

Following are available plans in {{\App\AppConstants::APP_NAME}}. Be default you will be signed up as Free Plan.

@foreach($memberships as $membership) @if($membership->is_active == 1)
@if($membership->top_bar_text != '') {{$membership->top_bar_text}} @endif
{{$membership->name}}
@if($membership->amount == 0)

Free

@else

${{$membership->amount}}

{{ucwords($membership->interval)}}

@endif

{{ucwords($membership->description)}}

@if (\Illuminate\Support\Facades\Auth::check()) Buy Now @else Buy Now @endif
@endif @endforeach