@extends('layouts.app') @section('title', 'Plans') @section('page-title', 'Manage Plans') @section('content')
Create Plan
@csrf
All Plans
@foreach($plans as $plan) @endforeach
NamePriceCycleDevicesMessagesAPIStatusActions
{{ $plan->name }} ${{ number_format($plan->price, 2) }} {{ $plan->billing_cycle }} {{ $plan->device_limit }} {{ number_format($plan->message_limit) }} {{ number_format($plan->api_limit) }} {{ $plan->is_active ? 'Active' : 'Inactive' }}
@csrf @method('DELETE')
@endsection