@extends('layouts.app') @section('title', 'Products Management') @section('content')
| Name | Type | Server | Pricing | Status | Actions |
|---|---|---|---|---|---|
|
{{ $product->name }}
{{ Str::limit($product->description ?? 'No description', 50) }}
|
{{ strtoupper($product->type) }} | {{ $product->server ? $product->server->name : 'N/A' }} | {{ $product->pricing->count() }} cycle(s) | {{ $product->active ? 'Active' : 'Inactive' }} | Edit View |
| No products found. Add your first product | |||||