Server : LiteSpeed System : Linux server335.web-hosting.com 4.18.0-553.62.1.lve.el8.x86_64 #1 SMP Mon Jul 21 17:50:35 UTC 2025 x86_64 User : cardxfeb ( 2452) PHP Version : 8.1.34 Disable Function : NONE Directory : /home/cardxfeb/public_html/resources/views/asaas/ |
@extends('layouts.app')
@section('title', 'Pague via Pix')
@section('content')
<div class="container mt-5">
<div class="row justify-content-center">
<div class="col-md-6 text-center">
<div class="card shadow">
<div class="card-header bg-success text-white">
<h4 class="mb-0">Pague via Pix</h4>
</div>
<div class="card-body">
<p>Plano: <strong>{{ $plan->name }}</strong></p>
<p>Valor: <strong>R$ {{ number_format($plan->price, 2, ',', '.') }}</strong></p>
@if(isset($pixData['encodedImage']))
<img src="data:image/png;base64,{{ $pixData['encodedImage'] }}" alt="QR Code Pix" class="img-fluid" style="max-width:280px">
<div class="mt-3">
<label class="form-label"><small>Cdigo Copia e Cola:</small></label>
<textarea class="form-control" rows="3" onclick="this.select()" readonly>{{ $pixData['payload'] ?? '' }}</textarea>
</div>
@else
<div class="alert alert-warning">QR Code no disponvel. Tente novamente.</div>
@endif
<p class="mt-3 text-muted"><small>Aps o pagamento, seu plano ser ativado automaticamente.</small></p>
<a href="{{ route('admin.dashboard') }}" class="btn btn-outline-primary mt-2">Ir para o Painel</a>
</div>
</div>
</div>
</div>
</div>
@endsection