@extends('layouts.admin') @section('content')

{{ __('Pricing Plans') }}

{{ __('Add New Plan') }}
@include('includes.admin.form-both')
@csrf
ফিচারগুলো কমা (,) দিয়ে আলাদা করুন।
{{ __('All Plans') }}
@foreach($plans as $plan) @endforeach
TITLE PRICE FEATURED OPTIONS
{{ $plan->title }} {{ $plan->currency }}{{ $plan->price }} {!! $plan->is_featured ? 'BEST VALUE' : 'Normal' !!}
@csrf @method('DELETE')
@endsection