uawdijnntqw1x1x1
IP : 216.73.216.93
Hostname : panel.codeskitter.com
Kernel : Linux panel.codeskitter.com 6.8.0-100-generic #100-Ubuntu SMP PREEMPT_DYNAMIC Tue Jan 13 16:40:06 UTC 2026 x86_64
Disable Function : apache_child_terminate, apache_note, apache_setenv, define_syslog_variables, dl, link, opcache_get_status, openlog, pcntl_exec, pcntl_fork, pcntl_setpriority, popen, posix_getpwuid, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid, posix_setuid
OS : Linux
PATH:
/
home
/
users
/
unlimited
/
www
/
learnoid.codeskitter.site
/
.
/
database
/
seeders
/
NotificationSeeder.php
/
/
<?php namespace Database\Seeders; use App\Enum\NotificationTypeEnum; use App\Repositories\NotificationRepository; use Illuminate\Database\Seeder; class NotificationSeeder extends Seeder { /** * Run the database seeds. */ public function run(): void { NotificationRepository::query()->updateOrCreate([ 'type' => NotificationTypeEnum::NewContentFromCourse->value, ], [ 'is_enabled' => true, 'heading' => 'Add New Content: Keep Your Course Fresh and Engaging', 'content' => 'New content has been added to your enrolled course {course_title}' ]); NotificationRepository::query()->updateOrCreate([ 'type' => NotificationTypeEnum::NewCourseFromInstructor->value, ], [ 'is_enabled' => true, 'heading' => 'Well Done! Your Course Is Now Ready for Learners Everywhere', 'content' => 'Your instructor has added a new course {course_title}' ]); NotificationRepository::query()->updateOrCreate([ 'type' => NotificationTypeEnum::NewExamFromCourse->value, ], [ 'is_enabled' => true, 'heading' => 'Are You Ready? New Assessment Is Waiting For You', 'content' => 'New Exam has added to your enrolled course {course_title}', ]); NotificationRepository::query()->updateOrCreate([ 'type' => NotificationTypeEnum::NewQuizFromCourse->value, ], [ 'is_enabled' => true, 'heading' => 'Are You Ready? New Assessment Is Waiting For You', 'content' => 'New Quiz has added to your enrolled course {course_title}', ]); NotificationRepository::query()->updateOrCreate([ 'type' => NotificationTypeEnum::CustomNotification->value, ], [ 'is_enabled' => true, 'heading' => 'New notification from ' . config('app.name'), 'content' => 'Flash Sale! Enroll in {course_title} at 60% Off – 24 Hours Only!', ]); NotificationRepository::query()->updateOrCreate([ 'type' => NotificationTypeEnum::NewEnrollmentNotification->value, ], [ 'is_enabled' => true, 'heading' => 'New course enrollment', 'content' => 'Congratulations! You’re now enrolled in {course_title}. Let’s unlock new opportunities together!', ]); } }
/home/users/unlimited/www/learnoid.codeskitter.site/./database/seeders/NotificationSeeder.php