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
372 B
PHP
20 lines
372 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Api;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Models\Notification;
|
|
|
|
class NotificationController extends Controller
|
|
{
|
|
public function update(Notification $notif)
|
|
{
|
|
if ($notif->id == null) {
|
|
(new Notification)->mark_all_as_read();
|
|
|
|
return;
|
|
}
|
|
$notif->mark_as_read();
|
|
}
|
|
}
|