@extends('website.user.layout.layout')
@section('title', 'Plans')
@section('user-content')
@foreach ($plans as $plan)
@include('components.price-plan', [
'plan' => $plan,
'type' => 'monthly',
'currentPlan' => $currentPlan,
])
@endforeach
@endsection
@push('scripts')
@endpush