You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
402 B
PHTML
20 lines
402 B
PHTML
1 year ago
|
<?php
|
||
|
|
||
|
namespace App\Http\Controllers\Api;
|
||
|
|
||
|
use App\Http\Controllers\Controller;
|
||
|
use App\Models\Notification;
|
||
|
use Illuminate\Http\Request;
|
||
|
|
||
|
class NotificationController extends Controller
|
||
|
{
|
||
|
public function update(Notification $notif)
|
||
|
{
|
||
|
if ($notif->id == null) {
|
||
|
(new Notification())->mark_all_as_read();
|
||
|
return;
|
||
|
}
|
||
|
$notif->mark_as_read();
|
||
|
}
|
||
|
}
|