Вход Регистрация
Файл: app/Http/Controllers/NotificationController.php
Строк: 28
<?php

namespace AppHttpControllers;

use 
IlluminateHttpRequest;
use 
Auth;
use 
AppModelsNotificationModel;

class 
NotificationController extends Controller
{
    public function 
index()
    {
        
$notifications NotificationModel::where('user'Auth::user()->id)->orderBy('created_at''DESC')->paginate(10);
        
NotificationModel::where('user'Auth::user()->id)->where('read'0)->update(['read' => 1]);
        return 
view('game.notifications', ["notifications" => $notifications]);
    }

    public function 
clear()
    {
        
NotificationModel::where('user'Auth::user()->id)->delete();
        return 
back()->with('ok''Уведомления очищены!');
    }
}
Онлайн: 2
Реклама