@extends('layouts.main') @section('content') @push('head') Page title | Site title @endpush
@if($errors->any())
@endif @if (session('status'))
{{ session('status') }}
@endif @if (session('error_m'))
{{ session('error_m') }}
@endif

Membership Plans

All information about various Membership Plans
@forelse($plans as $key => $plan) @empty @endforelse
# Name Price Point Value (PV) Network Width Network Depth ROI Status Actions
{{ $key+1 }} {{ __($plan->name) }} {{ getAmount($plan->price) }} FCFA {{ $plan->pv }} UNLIMITED Level {{ $plan->max_depth }} {{ getPercentage($plan->roi) }} @if($plan->status == 1) Active @else Inactive @endif
No Membership Plan found
{{-- modals --}} {{-- end modals --}} @push('script') @endpush @endsection'