{{--{{ dd($plans, $addid, $post) }}--}} @extends('layouts.app') @section('content')
@if(env('PAYMENT_STATUS')!='off')
{{ csrf_field() }} @foreach($plans as $items)
{{ $items->name }} Promo plan @if($items->description)({{ $items->description }} )@endif
amount: @if(request('plansdays'.$items->id)=='7' || request('plansdays'.$items->id)=='1') {{ $items->cost }} @else {{ $items->cost * 2}} @endif $ {{ $items->days }} days
@endforeach
Total
amount: {{ $post['totalcost'] }} $
@endif
@endsection @section('footer_scripts') @endsection