@extends('layouts.app') @section('title', $product->name) @section('content')
← Back to Dashboard

{{ $product->name }}

{{ $product->description }}

Product Details

Type

{{ ucfirst($product->type) }}

Status

{{ $product->active ? 'Active' : 'Inactive' }}

@if($product->pricing->count() > 0)

Pricing Plans

@foreach($product->pricing as $pricing)
{{ ucfirst($pricing->billing_cycle) }}
{{ format_currency($pricing->price) }}
@endforeach
@endif
@endsection