@extends('layouts.admin') @section('title', 'SMS Rates Settings') @section('page-title', 'System Settings - SMS Rates') @section('content')
SMS Rate Configuration
@csrf @method('PUT')
@error('default_sms_rate')
{{ $message }}
@enderror
Applied to new users without specific rates
@error('user_sms_rate')
{{ $message }}
@enderror
Standard rate for regular users
@error('reseller_sms_rate')
{{ $message }}
@enderror
Rate for resellers (they set their own client rates)

Current Rate Structure
User Type SMS Rate Description Affected Users
Default Rate ৳{{ number_format($settings->default_sms_rate ?? 0.25, 3) }}/SMS Applied when no specific rate is set New users, system defaults
Regular Users ৳{{ number_format($settings->user_sms_rate ?? 0.30, 3) }}/SMS Standard pricing for individual users {{ \App\Models\User::clients()->count() }} users
Resellers ৳{{ number_format($settings->reseller_sms_rate ?? 0.20, 3) }}/SMS Wholesale rate for resellers {{ \App\Models\User::resellers()->count() }} resellers
Pricing Calculator

৳0.00

Total Cost
Important Notes
  • Rate changes affect new transactions immediately
  • Existing user rates remain unchanged unless manually updated
  • Reseller rates are wholesale prices for resellers
  • Consider market competition when setting rates
  • Test rate changes with calculator before saving
@endsection @push('scripts') @endpush