@extends('layouts.app') @section('content')
| Service | Name | Price | Max Slots | Status | Action |
|---|---|---|---|---|---|
| {{ $plan->service->name ?? 'N/A' }} | {{ $plan->name }} | ${{ number_format($plan->price, 2) }} | {{ $plan->max_slots }} | {{ $plan->is_active ? 'Active' : 'Pending' }} |
@canany(['update plans', 'delete plans'])
@can('update plans')
Edit
@endcan
@can('delete plans')
@endcan
@else
-
@endcanany
|
| No service plans found. | |||||