@extends('front.layouts.app') @section('content')
@if (isset($data))

Subscription

{{ $data->state }} | {{ $data->hours }} hours
{{ $data->bar_number }}
@foreach ($data->price_list as $item)
{{ $item['name'] }}
Qty {{ $item['qty'] }}
{{ $item['amount_display'] }}
{{ $item['unit_amount_display'] }} each

@endforeach
Total due today
{{ $data->finalTotalPriceDisplay }}
Pay Now
@else
Payment completed please proceed to app login from here
@endif
@endsection