@extends('layouts.app') @section('content')
{{ __('Subscription Plans') }}
@if(session()->has('message'))
{{session()->get('message')}}
@elseif(session()->has("error"))
{{session()->get('error')}}
@endif
@foreach($piko_plans as $plan)
  • {{$plan->name . " " . $plan->description . " - " . $plan->currency_code . " " . $plan->price}}
    {{--
    @if(!$plan->subscription)
    @csrf
    @endif
    @if($plan->subscription)
    @csrf
    @endif
    @if(!$plan->subscriptionAny)
    @csrf
    @endif
    --}}
@endforeach
@endsection