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

{{ $plan->title}}

$ {{$plan->amount}} / {{ $plan->duration }}

Services

@if( !in_array($plan->id, $active_plan) ) @php $plan = \Illuminate\Support\Facades\Crypt::encrypt( $plan->id ); @endphp Upgrade Plan @else @php $plan = \Illuminate\Support\Facades\Crypt::encrypt( $plan->id ); @endphp Manage Plan @endif
@endforeach
@endsection