@extends('layouts.admin') @section('title') Manage Plans @endsection @section('content')
Add New Plan
@if(count($plans) > 0) @foreach($plans as $p) @endforeach @else @endif
# Title (EN) Title (KM) Monthly Price ({{ $settings->currency_symbol}}) Yearly Price ({{ $settings->currency_symbol}}) Allowed Properties Get Suggested Market Price Social Media Boost Access Downloads Access Affiliates Enable Trial Status Actions
{{ $i++ }} {{ $p->title_en }} {{ $p->title_km }} {{ $settings->currency_symbol." ".$p->monthly_price." ".$settings->currency_code }} {{ $settings->currency_symbol." ".$p->yearly_price." ".$settings->currency_code }} @if($p->allowed_properties == '-1')
Unlimited
@else
{{ $p->allowed_properties }}
@endif
{{ $p->get_market_price }} {{ $p->social_media_boost }} {{ $p->access_downloads }} {{ $p->access_affiliates }} {{ $p->enable_trial }} @if($p->status == 'active')
Active
@elseif($p->status == 'inactive')
Inactive
@endif
No Plans found
@endsection @section('script') @endsection