@extends('layouts.main') @section('content')
@if ($isPaypalSetup && $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