Edit File: NotificationController.php
<?php namespace App\Http\Controllers\Admin; use App\Services\Entity\NotificationService; class NotificationController extends BaseController { public function __construct(NotificationService $service) { parent::__construct($service); } public function sendNotifications() { return $this->service->sendNotifications($this->request); } }
Back to File Manager