@extends('layouts.app') @section('content')
| ID | Charge Name | Type | Amount / Rate | Applied Scope | Status | Action |
|---|---|---|---|---|---|---|
|
#{{ $charge->id }}
|
{{ $charge->name }}
|
@if ($charge->type === 'Fixed Amount')
Fixed Amount
@else
Percent
@endif
|
@if ($charge->type === 'Fixed Amount')
RM {{ number_format($charge->amount, 2) }}
@else
{{ number_format($charge->amount, 2) }}%
@endif
|
@if ($charge->active_buy)
Buy
@endif
@if ($charge->active_sell)
Sell
@endif
@if (!$charge->active_buy && !$charge->active_sell)
-
@endif
|
@if ($charge->is_active == 1)
Active
@else
Inactive
@endif
|
@can('charge.manage')
@else
Read-only
@endcan
|
|
No additional charges found. |
||||||