Str::uuid(), 'name' => 'John Doe', 'email' => 'john@example.com', 'contact_no' => '9846325698', 'age_group' => 2, 'procedure_of_interest' => 1, 'subject' => 'Hair Consultation', 'message' => 'I\'m interested in hair...', 'is_aggrement' => 11, 'created_at' => now(), 'updated_at' => now(), ], [ 'uuid' => Str::uuid(), 'name' => 'Hari Sharma', 'email' => 'hari@example.com', 'contact_no' => '9846325120', 'age_group' => 3, 'procedure_of_interest' => 2, 'subject' => 'Beard Consultation', 'message' => 'I\'m interested in beard traspalant...', 'is_aggrement' => 11, 'created_at' => now(), 'updated_at' => now(), ], [ 'uuid' => Str::uuid(), 'name' => 'Gita Shrestha', 'email' => 'gita@example.com', 'contact_no' => '9813652365', 'age_group' => 1, 'procedure_of_interest' => 3, 'subject' => 'Here is where you can register web routes for your application. These routes are loaded by the RouteServiceProvider within a group which contains the "web" middleware group. Now create something great!', 'message' => 'I\'m interested in eyebrow transpalant.', 'is_aggrement' => 10, 'created_at' => now(), 'updated_at' => now(), ], ]; DB::table('consultations')->insert($consultations); } }