@extends('layouts.main') @section('content')
@if ($isPaymentSetup && $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 }} {{ $product->display }} {{ __('Purchase') }}
@else

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

@endif
@endsection