insert([ ]); DB::table('permissions')->insert([ [ 'slug' => 'app_test.actiontypecategory.view', 'name' => 'View Actiontypecategory', ], [ 'slug' => 'app_test.actiontypecategory.create', 'name' => 'Create Actiontypecategory', ], [ 'slug' => 'app_test.actiontypecategory.edit', 'name' => 'Update Actiontypecategory', ], [ 'slug' => 'app_test.actiontypecategory.delete', 'name' => 'Delete Actiontypecategory', ], ]); DB::table('settings')->insert([ // Uncomment and edit this section for entering value to settings table. /* [ 'key' => 'app_test.actiontypecategory.key', 'name' => 'Some name', 'value' => 'Some value', 'type' => 'Default', ], */ ]); } }