mirror of
https://gitlab.com/omair-personal/exchange.git
synced 2026-08-19 12:34:13 +00:00
27 lines
580 B
PHP
27 lines
580 B
PHP
<?php
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
use Closure;
|
|
|
|
class MarkNotificationAsRead
|
|
{
|
|
/**
|
|
* Handle an incoming request.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @param \Closure $next
|
|
* @return mixed
|
|
*/
|
|
public function handle($request, Closure $next)
|
|
{
|
|
if($request->has('read')) {
|
|
$notification = $request->user()->notifications()->where('id', $request->read)->first();
|
|
if($notification) {
|
|
$notification->markAsRead();
|
|
}
|
|
}
|
|
return $next($request);
|
|
}
|
|
}
|