insert([ ]); DB::table('permissions')->insert([ [ 'slug' => 'appointment.appointment.view', 'name' => 'View Appointment', ], [ 'slug' => 'appointment.appointment.create', 'name' => 'Create Appointment', ], [ 'slug' => 'appointment.appointment.edit', 'name' => 'Update Appointment', ], [ 'slug' => 'appointment.appointment.delete', 'name' => 'Delete Appointment', ], /* [ 'slug' => 'appointment.appointment.verify', 'name' => 'Verify Appointment', ], [ 'slug' => 'appointment.appointment.approve', 'name' => 'Approve Appointment', ], [ 'slug' => 'appointment.appointment.publish', 'name' => 'Publish Appointment', ], [ 'slug' => 'appointment.appointment.unpublish', 'name' => 'Unpublish Appointment', ], [ 'slug' => 'appointment.appointment.cancel', 'name' => 'Cancel Appointment', ], [ 'slug' => 'appointment.appointment.archive', 'name' => 'Archive Appointment', ], */ ]); DB::table('menus')->insert([ [ 'parent_id' => 1, 'key' => null, 'url' => 'admin/appointment/appointment', 'name' => 'Appointment', 'description' => null, 'icon' => 'fa fa-newspaper-o', 'target' => null, 'order' => 190, 'status' => 1, ], [ 'parent_id' => 2, 'key' => null, 'url' => 'user/appointment/appointment', 'name' => 'Appointment', 'description' => null, 'icon' => 'icon-book-open', 'target' => null, 'order' => 190, 'status' => 1, ], [ 'parent_id' => 3, 'key' => null, 'url' => 'appointment', 'name' => 'Appointment', 'description' => null, 'icon' => null, 'target' => null, 'order' => 190, 'status' => 1, ], ]); DB::table('settings')->insert([ // Uncomment and edit this section for entering value to settings table. /* [ 'key' => 'appointment.appointment.key', 'name' => 'Some name', 'value' => 'Some value', 'type' => 'Default', ], */ ]); } }