@extends('layouts.app') @section('main')

Plans

Create Plan
@if(session('success'))
{{ session('success') }}
@endif @foreach($plans as $plan) @endforeach
ID Name Description Price Interval Max Users Max Products Active Actions
{{ $plan->id }} {{ $plan->name }} {{ $plan->description }} ${{ $plan->price }} {{ $plan->interval }} {{ $plan->max_users }} {{ $plan->max_products }} {{ $plan->is_active ? 'Yes' : 'No' }} View Edit
@csrf @method('DELETE')
@endsection