WIP booking updated feature

This commit is contained in:
Jack Goh
2018-08-29 09:38:55 +08:00
parent 88d704b368
commit dfe092f89c
8 changed files with 60 additions and 11 deletions
@@ -0,0 +1,26 @@
<?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);
}
}