Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
WIKIPEDIA
/
imaliapi
/
app
/
Classes
:
NotificationsManagerData.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace App\Classes; use App\NotificationManager; class NotificationsManagerData { public function saveNotification($serviceId): void { NotificationManager::create([ 'service_id' => $serviceId ]); } public function notificationQuantity($serviceId): int { return NotificationManager::query() ->where('service_id', '=', $serviceId) ->whereDate('created_at', '=', date('Y-m-d')) ->count(); } }