@extends('layouts.site') @section('content')

Ricarica qui i tuoi {{ config('config.coin_name') }}

@if(session()->has('message'))
{{ session('message') }}
@endif @if(config('config.promo') != 0)
Hurry up!
{{ config('config.promo') }}% bonus on everything!
@endif @if(config('config.discount') != 0)
Hurry up!
{{ config('config.discount') }}% discount on everything!
@endif @if(config('config.enable_paypal') && isset($prices['paypal']) && sizeof($prices['paypal']) != 0)
@foreach($prices['paypal'] as $price)

{{ $price->coins }} @if(config('config.promo') != 0) + {{ intval($price->coins*config('config.promo')/100) }} @endif {{ config('config.coin_name') }}

@endforeach
@endif
@endsection