ServiceConfigurationController.php 311 B

123456789101112131415
  1. <?php
  2. namespace App\Http\Controllers;
  3. use Illuminate\Http\JsonResponse;
  4. class ServiceConfigurationController extends Controller
  5. {
  6. public function index(): JsonResponse
  7. {
  8. return $this->successResponse(payload: [
  9. 'sms_enabled' => config('services.sms.enabled'),
  10. ]);
  11. }
  12. }