@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)

{{$plan?->name}}

{{$setting?->currency_symbol}} {{$plan?->price}} @switch($plan?->interval) @case('monthly') / month @break @case('yearly') / year @break @case('custom_date') / {{$plan?->custom_date}} @break @default / month @endswitch

  • {{$plan->ad_limit}} ad postings for @if ($plan?->interval == 'monthly') {{$plan->day}} Days @elseif ($plan?->interval == 'yearly') {{$plan->day}} Days @else {{$plan->day}} Days @endif
  • Ad visibility for {{$plan->day}} days
  • {{$plan->featured_limit}} Featured Listing
  • @if ( $plan->customer_support==1)
  • Basic customer support : Yes
  • @else
  • Basic customer support : No
  • @endif @if ( $plan->social_media_sharing==1)
  • Social media sharing : Yes
  • @else
  • Social media sharing : No
  • @endif {{--
  • Access to basic analytics (views, clicks)
  • --}}
@endforeach @endif
@endsection @push('style') @endpush