@extends('layouts.app') @section('title', 'Manage Plans') @section('content')

Plans

+ New Plan
@if(session('success'))
{{ session('success') }}
@endif
@foreach($plans as $plan) @endforeach
Name Price (₦) Listing Limit Feature? Verified? WhatsApp? Actions
{{ $plan->name }} ₦{{ number_format($plan->price / 100, 2) }} {{ $plan->listing_limit ?? 'Unlimited' }} {{ $plan->can_feature ? 'Yes' : 'No' }} {{ $plan->is_verified ? 'Yes' : 'No' }} {{ $plan->can_whatsapp ? 'Yes' : 'No' }} Edit
@csrf @method('DELETE')
@endsection