insert([ "name" => "Berat", "surname" => "Kjufliju", "username" => "beratk", "password" => bcrypt("123456"), "email" => "kufliju@gmail.com", "mobile_number" => "+38971201239", "role_id" => 1, "is_active" => true, "is_confirmed" => true, "created_at" => Carbon::now() ]); \DB::table("users")->insert([ "name" => "John", "surname" => "Doe", "username" => "john_doe", "password" => bcrypt("Johnsecret1!"), "email" => "johndoe@hotmail.com", "mobile_number" => "+389 71 111 222", "role_id" => 2, "is_active" => true, "is_confirmed" => true, "created_at" => Carbon::now() ]); } }