32 lines
940 B
PHP
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',
|
|
],
|
|
]);
|
|
}
|
|
}
|