create controller and rote and form request for harim office

This commit is contained in:
2025-08-02 15:59:24 +03:30
parent 163f2d9038
commit 1e352e01c3
8 changed files with 195 additions and 11 deletions

View File

@@ -15,10 +15,10 @@ class HarimActionSeeder extends Seeder
{
DB::table('harim_actions')->insert([
['id' => 1, 'name' => 'feedback', 'created_at' => now(), 'updated_at' => now(),],
['id' => 1, 'name' => 'yes', 'created_at' => now(), 'updated_at' => now(),],
['id' => 2, 'name' => 'no', 'created_at' => now(), 'updated_at' => now(),],
['id' => 3, 'name' => 'confirm', 'created_at' => now(), 'updated_at' => now(),],
['id' => 4, 'name' => 'refer', 'created_at' => now(), 'updated_at' => now(),],
['id' => 2, 'name' => 'yes', 'created_at' => now(), 'updated_at' => now(),],
['id' => 3, 'name' => 'no', 'created_at' => now(), 'updated_at' => now(),],
['id' => 4, 'name' => 'confirm', 'created_at' => now(), 'updated_at' => now(),],
['id' => 5, 'name' => 'reject', 'created_at' => now(), 'updated_at' => now(),],
]);
}
}