siakad-itm/database/seeders/NotificationSeeder.php
Yoga Pangestu 0397959f60
Some checks failed
tests / ci (pull_request) Has been cancelled
feat: implement notification system with CRUD operations and UI integration
2026-08-25 13:21:11 +07:00

32 lines
940 B
PHP

<?php
namespace Database\Seeders;
use App\Models\Notification;
use Illuminate\Database\Seeder;
class NotificationSeeder extends Seeder
{
public function run(): void
{
Notification::insert([
[
'user_id' => 1,
'title' => 'Tugas baru diunggah',
'content' => 'Tugas "Membuat Landing Page" telah tersedia di kelas SI-5A',
'is_read' => false,
'created_at' => '2026-08-05 09:05:00',
'updated_at' => '2026-08-05 09:05:00',
],
[
'user_id' => 2,
'title' => 'Pembayaran UKT diterima sebagian',
'content' => 'Pembayaran cicilan tahap 1 sebesar Rp1.500.000 telah tercatat',
'is_read' => true,
'created_at' => '2026-08-04 11:05:00',
'updated_at' => '2026-08-04 12:00:00',
],
]);
}
}