D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
ghanempharmacy.com
/
scripts
/
Filename :
check_notifications.php
back
Copy
<?php require __DIR__ . '/vendor/autoload.php'; $app = require __DIR__ . '/bootstrap/app.php'; $app->make(Illuminate\Contracts\Console\Kernel::class)->bootstrap(); $notifications = App\Models\Notification::where('type', 'restock_alert')->latest()->limit(5)->get(); foreach ($notifications as $n) { echo "ID: {$n->id} | Title: {$n->title} | Status: {$n->status}\n"; }