{{ __('Product Details') }}
@php $cartItem = $cartDto->items[0]; @endphp
{{ substr($product->name, 0, 1) }}
{{ $product->name }} @if ($product->description) {{ $product->description }} @endif @if ($product->max_quantity == 1) {{ __('Quantity:') }} {{ $cartItem->quantity }} @endif
@if ($product->max_quantity == 0 || $product->max_quantity > 1) @endif
@inject('tenantCreationService', 'App\Services\TenantCreationService') @if ($tenantCreationService->findUserTenantsForNewOrder(auth()->user())->count() > 0) @endif
{{ __('What you get:') }}
    @if ($product->features) @foreach($product->features as $feature) {{ $feature['feature'] }} @endforeach @endif