@extends('layouts.app') @section('title', 'Subscrição · Digital Dossier Cloud') @section('content') @if($tenant->trial_ends_at && $tenant->trial_ends_at->isFuture())
Avaliação disponível até {{ $tenant->trial_ends_at->format('d/m/Y H:i') }}.
@endif
@foreach($plans as $plan)

{{ $plan->name }}

{{ $plan->description }}

{{ number_format($plan->monthly_price_cents / 100, 0, ',', '.') }} € / mês
@csrf
@endforeach
@endsection