@extends('admin.layouts.main') @section('content')
@section('page_title') Plans @endsection
@if (Session::has('message')) @endif
@php $i=0; @endphp @foreach ($plans as $plan) @php $i++; @endphp @endforeach
Sr. No. Name Price Billing Cycle Action
{{ $i }} {{ $plan->name }} ₹ {{ number_format($plan->price, 0) }} {{ ucfirst($plan->billing_cycle) }}
@csrf {{ method_field('DELETE') }}
@endsection @section('jscode') @endsection