@extends('layouts.admin') @section('title', 'Service Variants - ' . $service->name) @section('content')
{{ $service->short_description }}
| Name | Price Adjustment | Duration Impact | Type | Status | Actions |
|---|---|---|---|---|---|
|
{{ $variant->name }}
@if($variant->description)
{{ $variant->description }}
@endif
|
@if($variant->price_adjustment > 0)
+AED {{ number_format($variant->price_adjustment, 2) }}
@elseif($variant->price_adjustment < 0)
AED {{ number_format($variant->price_adjustment, 2) }}
@else
No change
@endif
{{ ucfirst($variant->adjustment_type) }}
|
@if($variant->duration_adjustment_minutes != 0) {{ $variant->duration_adjustment_minutes > 0 ? '+' : '' }}{{ $variant->duration_adjustment_minutes }} min @else No change @endif |
@if($variant->is_addon)
Add-on
@endif
@if($variant->is_upgrade)
Upgrade
@endif
@if($variant->is_package)
Package
@endif
@if($variant->mobile_available)
Mobile
@endif
|
{{ $variant->is_available ? 'Available' : 'Unavailable' }} |
|
Start by adding variants for this service to offer different options and pricing.