@extends('layouts.app') @section('content')
@foreach($plans as $plan)

{{$plan->name}}

{{$plan->description}}
{{$plan->price}} {{$plan->currency}} / {{__($plan->interval)}}
@if(Auth::user()->plan_id == $plan->id) {{__('Current plan')}} @else {{__('Subscribe')}} @endif
@if(Auth::user()->plan_id == $plan->id) {{__('Current plan')}} @else {{__('Subscribe')}} @endif
@endforeach
@endsection