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

Plans List

Plans List Table
@foreach ($plans as $key => $plan) @endforeach
# Name Price Payrpo ID Status Created At Action
{{ $key + 1 }} {{ $plan['name'] }} ({{ ucwords($plan->type) }}) {{ $plan['price'] }} {{ $plan['paypro_id'] }} {{ $plan['is_active'] }} {{ $plan['created_at'] }}
Edit
@csrf
@endsection