D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
mikyal.online
/
app
/
Http
/
Controllers
/
Admin
/
Filename :
NotificationController.php
back
Copy
<?php namespace App\Http\Controllers\Admin; use App\Http\Requests\NotificationRequest; use App\Http\Resources\NotificationResource; use App\Services\NotificationService; use Exception; class NotificationController extends AdminController { private NotificationService $notificationService; public function __construct(NotificationService $notificationService) { parent::__construct(); $this->notificationService = $notificationService; $this->middleware(['permission:settings'])->only('update'); } public function index(): \Illuminate\Http\Response | NotificationResource | \Illuminate\Contracts\Foundation\Application | \Illuminate\Contracts\Routing\ResponseFactory { try { return new NotificationResource($this->notificationService->list()); } catch (Exception $exception) { return response(['status' => false, 'message' => $exception->getMessage()], 422); } } public function update(NotificationRequest $request): \Illuminate\Foundation\Application|\Illuminate\Http\Response|NotificationResource|\Illuminate\Contracts\Foundation\Application|\Illuminate\Contracts\Routing\ResponseFactory { try { return new NotificationResource($this->notificationService->update($request)); } catch (Exception $exception) { return response(['status' => false, 'message' => $exception->getMessage()], 422); } } }