@extends('admin.layouts.app') @section('title', 'Packages') @section('content')
| Name | Price | Billing | Modules | Status | Actions |
|---|---|---|---|---|---|
| {{ $package->name }} | {{ number_format($package->price, 2) }} | {{ $package->billing_period }} | @if($package->modules->isEmpty()) No modules @else @foreach($package->modules as $module) {{ $module->name }} @endforeach @endif | @if($package->is_active) Active @else Inactive @endif | |
| No packages found. Create your first package. | |||||