@extends('frontend.layouts.app')
@section('title')
{{ $title ?? 'Page header' }}
@endsection
@section('meta')
@endsection
@push('style')
@endpush
@section('content')
@include('frontend.layouts.includes.breadcrumb', [
'links' => [[$title => route('frontend.membership')]],
])
Membership Plans
@if (isset($plans) && count($plans) > 0)
@foreach ($plans as $plan)
{{-- Lifetime ribbon --}}
- {{ $plan->ad_limit }} ad postings
@if ($plan->interval == "lifetime")
- Valid for Lifetime
@else
- Valid for {{ $plan->day }} Days
@endif
@if ($plan->reward)
-
Earn {{ $plan->reward }} virtual {{ $setting?->currency_symbol }}
@endif
- Customer Support
- Social Media Sharing
@endforeach
@endif
@endsection
@push('scripts')
@endpush