laravel-learn-bbs/app/Http/Controllers/NotificationsController.php
2018-01-27 18:35:56 +08:00

14 lines
311 B
PHP

<?php
namespace App\Http\Controllers;
class NotificationsController extends Controller
{
public function index()
{
$notifications = \Auth::user()->notifications()->paginate(20);
\Auth::user()->markAsRead();
return view('notifications.index', compact('notifications'));
}
}