@extends('dashboard.layouts.master') @section('title', __('backend.show_sponsorship_plan')) @section('content')
| {{ __('backend.type') }} | @if ($plan->type == 1) {{ __('backend.event_sponsorship_plan') }} @elseif ($plan->type == 2) {{ __('backend.business_boost_plan') }} @elseif ($plan->type == 3) {{ __('backend.business_onboard') }} @else {{ __('backend.event_post') }} @endif |
|---|---|
| {{ __('backend.business_highlight_information') }} | {{ isset($plan->highlight_info) ? $plan->highlight_info : '-' }} |
| {{ __('backend.plan_name') }} | {{ isset($plan->name) ? $plan->name : '-' }} |
| {{ __('backend.duration_days') }} | {{ isset($plan->duration_days) ? $plan->duration_days : '-' }} |
| {{ __('backend.price') }} ({{ $currency_symbol }}) | {{ isset($plan->price_amount) ? number_format($plan->price_amount, 2) : '-' }} |
| {{ __('backend.features') }} |
@if ($plan->features && $plan->features->count() > 0)
|
| {{ __('backend.status') }} | @if ($plan->status == 1) Active @elseif($plan->status == 0) Deactive @elseif($plan->status == 2) Deleted @else - @endif |
| {{ __('backend.registration_date') }} | {{ $createDate }} |