insert([ ]); DB::table('menus')->insert([ [ 'parent_id' => 1, 'key' => null, 'url' => 'admin/incidentreport/incidentreport', 'name' => 'Incidentreports', 'description' => null, 'icon' => null, 'target' => null, 'order' => 1, 'status' => 1, ], [ 'parent_id' => 2, 'key' => null, 'url' => 'user/incidentreports', 'name' => 'Incidentreports', 'description' => null, 'icon' => null, 'target' => null, 'order' => 1, 'status' => 1, ], [ 'parent_id' => 3, 'key' => null, 'url' => 'incidentreports', 'name' => 'Incidentreports', 'description' => null, 'icon' => null, 'target' => null, 'order' => 1, 'status' => 1, ], ]); DB::table('permissions')->insert([ [ 'slug' => 'incidentreport.incidentreport.view', 'name' => 'View Incidentreport', ], [ 'slug' => 'incidentreport.incidentreport.create', 'name' => 'Create Incidentreport', ], [ 'slug' => 'incidentreport.incidentreport.edit', 'name' => 'Update Incidentreport', ], [ 'slug' => 'incidentreport.incidentreport.delete', 'name' => 'Delete Incidentreport', ], ]); DB::table('settings')->insert([ // Uncomment and edit this section for entering value to settings table. /* [ 'key' => 'incidentreport.incidentreport.key', 'name' => 'Some name', 'value' => 'Some value', 'type' => 'Default', ], */ ]); } }