@extends('layouts.admin', ['heading' => 'Plans & Packages']) @section('content') @if(session('status'))
{{ session('status') }}
@endif @if($errors->any())
@endif

Add Plan

@csrf
@forelse($plans as $plan) @empty @endforelse
Name Price BV Active Sort Actions
{{ $plan->name }} {{ $plan->price }} {{ $plan->bv }} {{ $plan->is_active ? 'Yes' : 'No' }} {{ $plan->sort_order }}
@csrf
No plans found.
@endsection