@extends('admin.layouts.app') @section('title', __('dashboard.subscription_type_details')) @section('content')
{{ strtoupper(substr($subscriptionType->getTranslation('name', 'en'), 0, 2)) }}

{{ $subscriptionType->getTranslation('name', app()->getLocale()) }}

@if($subscriptionType->is_active) {{ __('dashboard.active') }} @else {{ __('dashboard.inactive') }} @endif
{{ __('dashboard.general_info') }}
@endsection