@extends('adminlte::page') @section('title', 'Pricing') @section('content')
@foreach($plans as $plan)

{{ $plan->name }}

{{ strtoupper($plan->currency) }} {{ number_format($plan->price, 2) }}

Per {{ $plan->billing_period }}


{!! nl2br(e($plan->description)) !!}
@endforeach
@endsection