uawdijnntqw1x1x1
IP : 216.73.216.93
Hostname : panel.codeskitter.com
Kernel : Linux panel.codeskitter.com 6.8.0-100-generic #100-Ubuntu SMP PREEMPT_DYNAMIC Tue Jan 13 16:40:06 UTC 2026 x86_64
Disable Function : apache_child_terminate, apache_note, apache_setenv, define_syslog_variables, dl, link, opcache_get_status, openlog, pcntl_exec, pcntl_fork, pcntl_setpriority, popen, posix_getpwuid, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid, posix_setuid
OS : Linux
PATH:
/
home
/
users
/
unlimited
/
www
/
dabbawali.sizzlingcafe.co.in
/
app
/
Services
/
NotificationAlertService.php
/
/
<?php namespace App\Services; use Exception; use Illuminate\Http\Request; use App\Models\NotificationAlert; use Illuminate\Support\Facades\Log; class NotificationAlertService { /** * @throws Exception */ public function list() : \Illuminate\Database\Eloquent\Collection { try { return NotificationAlert::all(); } catch (Exception $exception) { Log::info($exception->getMessage()); throw new Exception($exception->getMessage(), 422); } } /** * @throws Exception */ public function update(Request $request) : \Illuminate\Database\Eloquent\Collection { try { $type = $request->type; $numberArray = []; $typeArray = []; $alertCount = NotificationAlert::count(); foreach (range(1, $alertCount) as $number) { array_push($numberArray, $number); array_push($typeArray, $type . $number); } $data = $request->only($numberArray); $option_Value = $request->only($typeArray); $id = []; $message = []; $option = []; foreach ($data as $key => $msg) { array_push($id, $key); array_push($message, $msg); } foreach ($option_Value as $value) { array_push($option, $value); } $notificationAlerts = [ 'id' => $id, 'message' => $message, 'option' => $option ]; foreach ($notificationAlerts['id'] as $key => $notificationAlert) { NotificationAlert::where('id', $notificationAlert)->update([ $type . '_message' => $notificationAlerts['message'][$key], $type => $notificationAlerts['option'][$key], ]); } return $this->list(); } catch (Exception $exception) { Log::info($exception->getMessage()); throw new Exception($exception->getMessage(), 422); } } }
/home/users/unlimited/www/dabbawali.sizzlingcafe.co.in/app/Services/NotificationAlertService.php