<?php
namespace App\Http\Controllers\Admin;
use App\Http\Controllers\Controller;
use App\Providers\Admin\BasicSettingsProvider;
use Exception;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Validator;
class BroadcastingController extends Controller
{
public function configUpdate(Request $request) {
$validator = Validator::make($request->all(),[
'broadcast_method' => 'required|string|in:pusher',
'broadcast_app_id' => 'required_if:broadcast_method,pusher|string|max:255',
'broadcast_primary_key' => 'required_if:broadcast_method,pusher|string|max:255',
'broadcast_secret_key' => 'required_if:broadcast_method,pusher|string|max:255',
'broadcast_cluster' => 'required_if:broadcast_method,pusher|string|max:50',
]);
$validated = $validator->validate();
$validated = replace_array_key($validated,"broadcast_");
$basic_setting = BasicSettingsProvider::get();
try{
$basic_setting->update([
'broadcast_config' => $validated,
]);
modifyEnv([
"BROADCAST_DRIVER" => remove_spaces($validated['method']),
"PUSHER_APP_ID" => remove_spaces($validated['app_id']),
"PUSHER_APP_KEY" => remove_spaces($validated['primary_key']),
"PUSHER_APP_SECRET" => remove_spaces($validated['secret_key']),
"PUSHER_APP_CLUSTER" => remove_spaces($validated['cluster']),
]);
}catch(Exception $e) {
return back()->with(['error' => ['Something went worng! Please try again.']]);
}
return back()->with(['success' => ['Broadcast configuration updated successfully!']]);
}
}
How To Payment
Making a payment on our website is quick and secure. Start by logging in or creating an account. Select your preferred payment method, input the required details, and review the information. Once you confirm everything is correct, click on the "Submit Payment" button. You’ll receive instant confirmation and can track your payment status through your account dashboard. It’s an easy and secure process.