@extends('layouts.main') @section('content')
@if ($isStoreEnabled && $products->count() > 0)
{{ $credits_display_name }}
@foreach ($products as $product) @endforeach
{{ __('Price') }} {{ __('Type') }} {{ __('Description') }}
{{ $product->formatToCurrency($product->price) }} {{ strtolower($product->type) == 'credits' ? $credits_display_name : $product->type }} @if (strtolower($product->type) == 'credits') @elseif (strtolower($product->type) == 'server slots') @endif {{ $product->display }} {{ __('Purchase') }}
@else

@if ($products->count() == 0) {{ __('There are no store products!') }} @else {{ __('The store is not correctly configured!') }} @endif

@endif
@endsection