@extends('layouts.main') @section('content')
@if($isPaypalSetup && $products->count() > 0)
Credits
@foreach($products as $product) @endforeach
Price Type Description
{{$product->formatCurrency()}} {{$product->type}} {{$product->display}} Purchase
@else

@if($products->count() == 0) The store is temporarily disabled! @else The store is not correctly configured! @endif

@endif
@endsection